sampleName realConc exptname concentrate timepoints replicate day var
name1 3.877049e-05 0hr 55mM 0 b1 011311 1
name1 3.293085e-04 0hr 55mM 0 b1 011311 2
name2 2.939995e-03 KClpulse-5min 55mM 20 b1 011411 1
name2 1.212584e-02 KClpulse-5min 55mM 20 b1 011411 2
here's an example data frame named 'ex'
I want to average the realConc values for the rows which are have duplicated values in columns: exptname,concentrate,timepoints,replicate,and day.
Then make one row with this new average, and the same sampleName
I've been thinking mean(ex[which(duplicated(paste(ex$exptname,ex$concentrate,ex$timepoints,ex$replicate,ex$day))),]$realConc)
the problem with this is that it will average every single value that is duplicated in these columns, even if they are different from each other
i need this to happen for every unique value within each column
then I need one row with an averaged realConc value and the same sampleName as whichever rows were averaged
