[R] plotting two functions

2008-04-23 Thread Manoel Santos
i wanna compare functions to be simple , let's say i want x^2 and x^5 in same plot ( it's not the case but if i get it i'll understand for others ) how i do it? x<-seq(-10, 10, l=100) > plot(x^2) and? tks [[alternative HTML version deleted]]

Re: [R] plotting two functions

2008-04-23 Thread Charles C. Berry
On Thu, 24 Apr 2008, Manoel Santos wrote: > i wanna compare functions > to be simple , let's say i want x^2 and x^5 in same plot ( it's not the > case but if i get it i'll understand for others ) > how i do it? See ?curve example( curve ) HTH, Chuck > > x<-seq(-10, 10, l=1

Re: [R] plotting two functions

2008-04-23 Thread Jorge Ivan Velez
Hi Manoel, Try this: x<-seq(-10, 10, l=100) plot(x^2,type="l",col=2,ylim=range(x^2,x^5),ylab='f(x)') points(x^5,type="l",col=4) legend('topleft',c(expression(x^2),expression(x^5)),col=c(2,4),lty=1) See ?plot HTH, Jorge On Wed, Apr 23, 2008 at 11:23 PM, Manoel Santos <[EMAIL PROTECTED]> wrot

Re: [R] plotting two functions

2008-04-23 Thread Manoel Santos
by the way, i want both in the same figure, not side by side or others.. tks [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-pro