search for: values_min

Displaying 1 result from an estimated 1 matches for "values_min".

Did you mean: values_max
2012 Mar 19
3
Issue with asin()
...uil),0) } else{ stop("\nMethod name is invalid.\nMethods available = DDsin (sinus) or DDt2 (mean)\n") } return(DD) } BUT! When I try to process random data: library(reshape2) library(plyr) station <- rep(c("station1","station2","station3"), 20) values_min <- sample(-5:20, size = 60, replace = T) values_max <- sample(20:40, size = 60, replace = T) meanT <- ((values_min+values_max)/2) d <- data.frame(station,values_min,values_max,meanT) names(d) <- c("station", "values_min","values_max","meanT")...