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

Suppose I have a variable that last for several periods. Like let say the amount of years that I have an Ipod. So I have the Ipod 1st generation from 2001 until 2004 and then in 2005 I got Ipod 2 and so on. So my dataframe would look like:

  2001 Ipod1
  2002 Ipod1
  2003 Ipod1
  2004 Ipod1
  2005 Ipod2
  2006 Ipod2
  2007 Ipod2
  2008 Ipod2
  2009 Ipod3
  2010 Ipod3

What I want is to create a dummy for the period when a new variable arrives so I would get:

  Year  Var  Dummy
  2001 Ipod1  1
  2002 Ipod1  0
  2003 Ipod1  0
  2004 Ipod1  0
  2005 Ipod2  1
  2006 Ipod2  0
  2007 Ipod2  0
  2008 Ipod2  0
  2009 Ipod3  1
  2010 Ipod3  0

So far I have been able to do this:

df = structure(list(Year = 2001:2010, Var = structure(c(1L, 1L, 1L,
1L, 2L, 2L, 2L, 2L, 3L, 3L), .Label = c("Ipod1", "Ipod2", "Ipod3"
), class = "factor")), .Names = c("Year", "Var"), class = "data.frame", row.names = c(NA,
-10L))

df$number.in.group = unlist(lapply(table(df$Var),seq.int)) 
df$dummy = ifelse(df$number.in.group == 1,1,0)
df$dummy[1]=0

Actually I would like the first element of the dummy to be zero.

My question is: Is there any way of doing this in a better way?

Thanks

share|improve this question
This indicator variable should be a logical value rather than a number, since it records whether or not an event occured; it isn't counting things. – Richie Cotton Feb 3 '12 at 11:11
@RichieCotton In another but related context I would like to run a regression with a dummy, I guess a logical value might not work there, so 1 and 0's are a better solution. – AndresT Feb 3 '12 at 11:20
1  
lm (and similar models) will convert a logical value to be a factor. That is, a categorical variable with two states. The coefficient will be the same whether it is a factor or numeric. – Richie Cotton Feb 3 '12 at 13:40
@RichieCotton Txs, that is good to know! – AndresT Feb 3 '12 at 21:46

4 Answers

up vote 9 down vote accepted

How about this:

df$Dummy <- as.numeric(!duplicated(df$Var))

# Or, if you want the first element to be 0,
df$Dummy <- c(0, as.numeric(!duplicated(df$Var))[-1])
share|improve this answer
Very nice. Once again a useful base function shows up that I'd never learned about. :-) – Carl Witthoft Feb 3 '12 at 14:47
@CarlWitthoft -- I know what you mean. Just the other day, I discovered rowsum(), and thought "where have you been hiding, all these years. And then there are functions like nextn(), which I also just discovered, for which I think, "and how exactly did that one make it into a base R package?" (though I suppose there must be some reason)! – Josh O'Brien Feb 3 '12 at 18:02

I believe this gives the desired result:

> df$Dummy <- c(0, diff(as.numeric(df$Var)))
> df
   Year   Var Dummy
1  2001 Ipod1     0
2  2002 Ipod1     0
3  2003 Ipod1     0
4  2004 Ipod1     0
5  2005 Ipod2     1
6  2006 Ipod2     0
7  2007 Ipod2     0
8  2008 Ipod2     0
9  2009 Ipod3     1
10 2010 Ipod3     0

This works since Var is a factor so using as.numeric works.

share|improve this answer

The rle function is very useful in these kinds of situations. It finds consecutive runs of the same item in a vector.

rle_result = rle(as.character(df$Var))
rle_result
Run Length Encoding
  lengths: int [1:3] 4 4 2
  values : chr [1:3] "Ipod1" "Ipod2" "Ipod3"

To construct your new variable:

df$new = 0
change_ids = 1 + cumsum(rle_result$lengths)
df$new[change_ids[-length(change_ids)]] <- 1
df
   Year   Var new
1  2001 Ipod1   0
2  2002 Ipod1   0
3  2003 Ipod1   0
4  2004 Ipod1   0
5  2005 Ipod2   1
6  2006 Ipod2   0
7  2007 Ipod2   0
8  2008 Ipod2   0
9  2009 Ipod3   1
10 2010 Ipod3   0

which is exactly what you where looking for I think.

share|improve this answer

(1) The question asked for a Dummy column but the sample answer in the question also produced a number.in.group column so I was not sure whether the number.in.group column was required or not; however, below we assume it is needed. Note that the assignment of 0 to the first element of Dummy has the effect of converting that column to numeric:

within(df, {
    number.in.group <- ave(Year, Var, FUN = seq_along)
    Dummy <- number.in.group == 1
    Dummy[1] <- 0
})

(2a) If number.in.group is not needed and the groups in Var are contiguous as in the example then the duplicated solution already presented would be preferable except I think it would be slightly clearer if it were written like this:

df$Dummy <- !duplicated(df$Var)
df$Dummy[1] <- 0

even though that requires one additional statement.

(2b) Also we might prefer a non-destructive form:

within(df, {
    Dummy <- !duplicated(Var)
    Dummy[1] <- 0
})
share|improve this answer

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.