I'm looking for a dead simple example on how to use aggregate
and calculate means in R.
Say, I have the following data frame:
A B
100 85
200 95
300 110
400 105
And I want to calculate the mean values for some ranges with the following result:
RANGE MEAN
100-200 90
300-400 107.5
How would I go about doing this, cast()
or aggregate()
?