[R] How to name variables in a single plot

Gabor Grothendieck ggrothendieck at gmail.com
Wed Jun 1 18:19:36 CEST 2005


On 6/1/05, Amir Safari <amsa36060 at yahoo.com> 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)




More information about the R-help mailing list