vote up 0 vote down star

I have a data set of comic book unit sales by volume (ex. Naruto v10) that I need to reduce to sales by series (so all Naruto volume unit sales would be added together into a single observation). I have a variable "series" that identifies the series of each observation. The equivalent code in Stata would be:

by series, sort:replace unitssales=sum(unitssales); by series, sort:keep if _n==_N

But I'm trying to figure out how to do this in R. Any help would be much appreciated! Thanks in advance!

flag
This is a duplicate of the question rcs identified: stackoverflow.com/questions/1660124/…. It's also almost identical to this question: stackoverflow.com/questions/1407449/…. – Shane Nov 3 at 14:12

2 Answers

vote up 3 vote down

See this related SO question: How to group columns by sum in R

link|flag
vote up 2 vote down

Without knowing what format your data is in, I can only suggest you look at the tapply function. From the help:

> n <- 17; fac <- factor(rep(1:3, length = n), levels = 1:5)
> tapply(1:n, fac, sum)
 1  2  3  4  5 
51 57 45 NA NA
link|flag

Your Answer

Get an OpenID
or

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