At 4:46 AM -0800 11/21/10, madr wrote:
By default scatter-plot presents data by using circles, is there a way to
make it 1px dots ?
--
View this message in context: http://r.789695.n4.nabble.com/display-data-as-1px-dots-in-scatterplot-tp3052343p3052343.html
Sent from the R help mailing list archive at Nabble.com.



pch = "."
e.g.,

x <- rnorm(100)
plot(x,pch=".")


Bill


______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to