search for: compareplot

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

Did you mean: comparefloat
2006 Jan 17
0
Perl array conversion in R to compare plots.
...could be more two sets to compare...) These get passed to the R engine as follows x <- list(list(1,2,3,4),list(2,1,2,2,2,2,2)) I am trying to write a function that will perform boxplot on all this data but I am not sure how to extract data properly and display so far my function looks like compareplot <- function(x,xlab=par("xlab")) { new.plot() for ( i in 1:length(x)) { # I think I have to do some assign and paste here"??? xlist[i] <- unlist(x[[i]]) args <- paste(args,xlist[i]) } so I want my args to look something like xlist1,x...