jim holtman wrote: > matplot(x,y) > > Ah, thanks -- I got it working! Actually, I was getting a "must have the same number of rows" error since x has the same number of columns as y, but x itself is a single row. This worked for me when I transposed y...which is ok for my problem:
matplot(x,t(y)) Thanks! Ray ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.