[R] averaging rows on a data.frame according to a factor

Rui Barradas ruipbarradas at sapo.pt
Sat Nov 23 00:02:11 CET 2013


Hello,

Try the following.

aggregate(cbind(V2, V3) ~ V1, dat, FUN = mean)


Hope this helps,

Rui Barradas

Em 22-11-2013 21:43, john d escreveu:
> Dear all,
>
> I apologize for the newbie question, but I'm stuck.
>
> I have a data frame in the following form:
>
> dat<-as.data.frame(cbind(c("a","a","a","b","b"), c(1,2,3,3,2),c(4,3,5,4,4)))
>
> I need a way to generate a new dataframe with the average for each factor.
> The result should look like:
>
> res<-as.data.frame(cbind(c("a","b"), c(2,2.5),c(4,4)))
>
> Any help would be greatly appreciated.
>
> Jonathan
>
> 	[[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



More information about the R-help mailing list