I have 2 vectors:
a <- c(6,5,3,1,6,7,4,5,3,2)
b <- c(2,1,1,2,3,2,1,3,3,2)
I want a simple code that returns a vector composed of the means of all values in the vector "a" at the positions where there are the same values in b. Moreover I want that it is ordered the same way that the levels of b are ( levels(as.factor(b)) ).
solution = c(mean(5,3,4),mean(6,1,7,2),mean(6,5,3))
Simpler example:
a <- c(1,2,3,4)
b <- c(1,2,2,1)
solution <- c(2.5,2.5)
Thanks a lot !