[R] Plot(x,y)

2009-08-16 Thread malcolm Crouch
Hi , I am using the plot function for some data , and the plot is coming back pure black , with scales on the side . Regards Malcolm [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listin

Re: [R] Plot(x,y)

2009-08-16 Thread malcolm Crouch
My apologies for the poor quality of the last post. Query > plot(V6,V5, col="red") or > plot(V6,V5) the graph is attached. Data V5 V6 2063 0.009179148 -8117667.885 2064 0.03854349 -8117963.045 2065 -0.018345998 -8117980.935 2066 0.023662906 -8118013.245 206

Re: [R] Plot(x,y)

2009-08-16 Thread Remko Duursma
What is the problem exactly? Remko - Remko Duursma Post-Doctoral Fellow Centre for Plants and the Environment University of Western Sydney Hawkesbury Campus Richmond NSW 2753 Dept of Biological Science Macquarie University North Ryde NSW 2109

Re: [R] Plot(x,y)

2009-08-18 Thread Michael Knudsen
On Sun, Aug 16, 2009 at 9:19 PM, malcolm Crouch wrote: >> plot(V6,V5, col="red") > or >> plot(V6,V5) It seems that V5 and V6 are column names in your data matrix. If your matrix is called data, you should use plot(x$V6,x$V5,col="red") instead. Best, Michael -- Michael Knudsen micknud...@gmai

Re: [R] Plot(x,y)

2009-08-18 Thread David Winsemius
On Aug 18, 2009, at 1:40 AM, Michael Knudsen wrote: On Sun, Aug 16, 2009 at 9:19 PM, malcolm Crouch wrote: plot(V6,V5, col="red") or plot(V6,V5) It seems that V5 and V6 are column names in your data matrix. If your matrix is called data, you should use plot(x$V6,x$V5,col="red") ITYM:

Re: [R] Plot(x,y)

2009-08-18 Thread Michael Knudsen
On Tue, Aug 18, 2009 at 6:59 PM, David Winsemius wrote: > ITYM: > > plot(data$V6, data$V5, col="red") Yup! My mistake. -- Michael Knudsen micknud...@gmail.com http://lifeofknudsen.blogspot.com/ __ R-help@r-project.org mailing list https://stat.ethz.c

Re: [R] Plot(x,y)

2009-08-18 Thread milton ruser
Hi malcolm, sorry but your post continue with pour quality, because it is not reproducible, it is!? By the way, gavin.simp...@ucl.ac.uk wrote: . You really shouldn't call your data, 'data' as it will get very confusing when you start using modelling functions and using the data argument, or u