Displaying 1 result from an estimated 1 matches for "xlist2".
Did you mean:
list2
2006 Jan 17
0
Perl array conversion in R to compare plots.
...t <- 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,xlist2,....
boxplot(args)
hist(args) ...
probplot(args)
or should I do some data.frame conversion on all of the lists... and how would
I go about doing a comparison of data on probplot ( cumulative probability plot
) or histogram compare?
Thanks for any help,
Mary