Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building 3d contingency tables from 3 variables in a data frame. Let's suppose I'm constructing these via

table(x,y,z)

Where z is the variable on which I'm stratifying. I'd like to get rid of any (,,z(i)) where the number of observations in that stratum is 1.

How might I do this? I had trouble figuring out how to count observations in the first place, which I thought I'd be able to use, with subset, to pare down my contingency tables.

share|improve this question

migrated from stats.stackexchange.com Oct 28 '12 at 8:15

1 Answer

up vote 1 down vote accepted

Supposing your data is contained in a data frame object named data, this code should remove all data in strata with one observation.

data <- data[-which(data$z %in% which(table(data$z)==1)),]

EDIT

This appears to work now. I'm not sure if this will work in general, but it works for this situation.

data <- read.csv(file='~/Downloads/juveniles2forMax.csv')

data <- data.frame(
  Urban = data$Urban,
  RecidivismPlacement = data$RecidivismPlacement,
  timeinjj = data$timeinjj
)

removeStrata <- function(data, z) {
    data[-which(data[,z] %in% as.numeric(attr(which(table(data[,z])==1),"names"))),]
}

removeStrata(data=data, z='timeinjj')
share|improve this answer
Looks Brilliant, Max, and I think I understand the logic. Only, I get the "$ Operator is Invalid for atomic vectors." Do you have a sense of why this might be happening? – dubhousing Oct 28 '12 at 3:52
Perhaps I'd misunderstood your approach: I'd thought 'data' in your example referred to the contingency tables, not the original data. Nevertheless, if I try it on the data frame, the result is a list of integers whose length is approx rxc of the data frame. – dubhousing Oct 28 '12 at 4:02
I should have explained it a bit more. It's on the original data. It removes rows with a stratum matching a stratum with one observation. The new data frame should have the same number of columns as the original. – Max Oct 28 '12 at 4:20
For whatever reason, the new one doesn't; it went from a frame with three columns (x,y,z) to one that is a list of integers (n = 3*r*c of orig. data frame - 1). I could understand, perhaps, if it was 3*r*c - the number of obs from strata that contained only one obs, but there were 3 (and not one) of those. Again, really appreciate your suggestions on this question. – dubhousing Oct 28 '12 at 4:31
1  
Totally, totally works. Thanks Max! – dubhousing Oct 28 '12 at 23:46
show 16 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.