Skip to content
Prev 69984 / 398506 Next

plot question

do you need something like this:


par(mfrow=c(2, 2))

plot(0:10, 0:10, axes=FALSE, xlim=c(0, 10))
axis(1, at=seq(0, 10, 5))
axis(2)
####
plot(0:10, 0:10, axes=FALSE, xlim=c(0, 10))
axis(1, at=seq(0, 10, 2))
axis(2)
####
plot(0:10, 0:10, axes=FALSE, xlim=c(0, 10))
axis(1, at=seq(0, 10, 1))
axis(2)


I hope it helps.

Best,
Dimitris

----
Dimitris Rizopoulos
Ph.D. Student
Biostatistical Centre
School of Public Health
Catholic University of Leuven

Address: Kapucijnenvoer 35, Leuven, Belgium
Tel: +32/16/336899
Fax: +32/16/337015
Web: http://www.med.kuleuven.ac.be/biostat/
     http://www.student.kuleuven.ac.be/~m0390867/dimitris.htm


----- Original Message ----- 
From: "alexbri" <alexbri at netcabo.pt>
To: <r-help at stat.math.ethz.ch>
Sent: Thursday, May 19, 2005 1:18 PM
Subject: [R] plot question