[R] display data as 1px dots in scatterplot ?

William Revelle lists at revelle.net
Sun Nov 21 15:06:52 CET 2010


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 at 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.



More information about the R-help mailing list