On 6/1/05, Amir Safari <[EMAIL PROTECTED]> wrote: > > > > Dear R Friends , > > I want to name my variables( more than 2 variables in a single plot) within a > plot to distinct them from each other, but I cann't. How it is possible? I > don't mean x and y axis using xlab or ylab. At the below , it follows some > lines, only as an example that you could try please, if it is possible. I > really thanks for your attention. > > Amir > > > > > > library(graphics) > > y<- c(1:100) > > x1<-seq(0.1,10, by=0.1) > > x2<-seq(0.5,50,by=0.5) > > mydata<- data.frame( y=y, x1=x1, x2=x2) > > matplot(mydata, type = "l" ) > > matplot(mydata, type = "l" ,xlab="Time") > > matplot(mydata, type = "l" ,xlab="Time",ylab="MSE ") > >
example(matplot) gives some alternative ways of doing this. Another way, not shown there, is via text: text(rep(100,3), mydata[100,], colnames(mydata), pos = 2) ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
