Perhaps matplot will do what you want?
?matplot
aa <- matrix(1:25, nrow=5)
matplot(aa)
--- tomaschwutz <[EMAIL PROTECTED]> wrote:
> How do a plot several columns of a matrix at once in
> a single plot
> versus a single x-variable?
>
> The default plot.matrix or plot.dataframe commands
> plot ea
Thank you Dimitris, Jorge, and Mark (personal mail),
for the hint to matplot and the examples.
This was exactly what I was thinking of.
Thomas
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting
Hi Thomas,
Ckeck ?matplot. Here's a simple example:
# Data set
x=runif(100)# Axis
x1=rnorm(100,25,2) # Variable x_i
x2=rnorm(100,10,1)
x3=rnorm(100,15,4)
x4=rnorm(100,30,4)
DATA=cbind(x,x1,x2,x3,x4)
# Plot
matplot(x,DATA[,2:5],col=1:5,pch=1:5)
I hope this helps.
How do a plot several columns of a matrix at once in a single plot
versus a single x-variable?
The default plot.matrix or plot.dataframe commands plot each column
versus each other column in several sub-plots. I want to plot each
column versus a single other vector (x) as several lines or points
4 matches
Mail list logo