On Stackoverflow I already recieved a great answer for the use of sapply and the solutions work great and I've successfully implemented them at work (here is the link).
using apply to calculate across rows and columns
Unfortunately I've run into a snag. There is a small area in the data frame where I only need the difference between the test and controll, not the percent difference.
here is the example data:
site <- c(rep(1, 10), rep(2,10), rep(3,10))
element <-rep(c("ca", "Mg", "K"), 10)
control <- seq(from= 1,to=60, by=2)
BA01 <- seq(from= 31,to=90, by=2)
BA02 <- seq(from= 21,to=80, by=2)
BA03 <- seq(from= 101,to=160, by=2)
mydf <- data.frame(site, element, control, BA01, BA02,BA03)
and the successful solution with sapply:
mydf.pct <- cbind(mydf[1:2],sapply(mydf[-(1:3)],function(x) 100*(x-mydf[[3]])/mydf[[3]]))
With the above example, I would need the values of Mg to simply be subtracted from the control. So in mydf.pct Site Nr. 1 and element Mg would have the values for BA01, BA02 and BA03 30, 20 and 100 respectively. I've tried with both if and elseif statements and I can get the elseif to work on simple examples but I can not apply it to my working dataframe.
Thank you again in advance for any help with this problem!
PS. If your wondering why I'm asking this question, I have values for the pH of a soil solution in the actual dataframe, not just values of elements. I need the actual change in pH not a percent change.