Skip to content
Prev 170596 / 398506 Next

Unadulterated plot

Hi James,

What you really need to do is to check out the many freely available pdfs 
for R beginners. Here is a good place to start

http://cran.r-project.org/other-docs.html

If I am right interpreting what you want, I think you need to create a blank 
plot with no axes, axis labels etc. Try

plot(x,y,xlab="",ylab="",xaxt=NULL,yaxt=NULL,type="n")
#blank plot
points(x,y)

type "?par" into R and see how you can set parameters like this up as the 
default.

Hope this helps?

Simon.


----- Original Message ----- 
From: "James Nicolson" <jlnicolson at gmail.com>
To: <r-help at r-project.org>
Sent: Sunday, February 15, 2009 10:29 PM
Subject: [R] Unadulterated plot