[Solved] How to write a function in R to calculate the min/max difference between two dataframes?


df <- X - Y
plyr::ldply(1:nrow(df), function(x) data.frame(
                       min=min(df[x,], na.rm=T), 
                       max=max(df[x,], na.rm=T)))

1

solved How to write a function in R to calculate the min/max difference between two dataframes?