I have the following data frame:
y <- data.frame(group = letters[1:5], a = rnorm(5) , b = rnorm(5), c = rnorm(5), d = rnorm(5) )
How to get a data frame which gives me the correlation between columns a,b and c,d for each row?
something like: sapply(y, function(x) {cor(x[2:3],x[4:5])})
Thank you, S