[R] Summarize by two or more attributes

Marc Schwartz marc_schwartz at me.com
Tue May 17 22:09:29 CEST 2011


On May 17, 2011, at 2:55 PM, ROLL Josh F wrote:

> Marc, 
>  How could I also apply the spline function to each of the 'columns' found in the result   from 
> 
> tapply(Df$Rate,list(Df$Bin,Df$Type),sum)
> 
> ??


Something along the lines of the following:

  apply(tapply(Df$Rate,list(Df$Bin,Df$Type),sum), 2, spline)


If I am understanding what you want to do. 

Depending upon what you are trying to do, you may want to look at the other functions listed in the See Also in ?spline.

HTH,

Marc



More information about the R-help mailing list