[R] r-plot 2nd attempt

durden10 durdantyler at gmx.net
Wed May 27 15:06:09 CEST 2009


First of all, thanks a lot for your quick & helpful comments!

I have come down to this:

Win<- c(-0.005276404,  0.081894394, -0.073461539,  0.184371967, 
0.133189670, -0.006239016,      -0.063616699,  0.196754234,  0.402148743, 
0.104408425,
	  0.036910154,  0.195227863,  0.212743723,  0.280889666,  0.300277802)
Calgary<- c(5,  8, 11,  3,  7,  4,  7,  1,  3,  6,  3,  2,  8,  0,  1)

data_corr <- data.frame(Win,Calgary)
plot(data_corr, type = "p", axes=FALSE,  col = "blue", lwd = 2)

#y-axis
axis(2, tcl=0.35,seq(1,11,by=2))

#x-axis
axis(1, tcl=0.35,seq(-0.1,0.5,by=0.1))
box()

abline(lm(data_corr[,2]~data_corr[,1]))

It works for the y-axis, but unfortunately, the x-axis is still not working:
It starts at 0 and end at 0.4, but it should start at -0.1, as mentioned in
the code (cf picture) :confused: 
http://www.nabble.com/file/p23742121/Rplots_2.png 

-- 
View this message in context: http://www.nabble.com/r-plot-tp23739356p23742121.html
Sent from the R help mailing list archive at Nabble.com.




More information about the R-help mailing list