I have a long data frame with three columns fyear, tic, and dcvt (for fiscal year, ticker, and total convertible debt). There are about 18 fiscal years and a few thousand tickers. I would like to add an indicator variable that is one whenever dcvt goes up from one year to the next.
I tried ddply, but I lost the fyear column and wasn't sure how to get it back.
library(plyr)
temp <- data.frame(fyear = rep(1992:2009, 10), tic = rep(letters[1:10], each = 18), dcvt = rnorm(180, 200, 10))
my.fun <- function(x) x <- c(0, ifelse(tail(x, -1) - head(x, -1) > 0, 1, 0))
temp2 <- ddply(temp, "tic", colwise(my.fun, "dcvt"))
I also tried to cast to wide with the reshape2 package, then run for loops, but of course, that took forever.
Is there a way that I can do this quickly? Should I make a wide zoo object then use diff? I would like to avoid passing through a time series, if I can. Thanks!