## Please edit system and help pages ONLY in the moinmaster wiki! For more ## information, please see MoinMaster:MoinPagesEditorGroup. ##acl MoinPagesEditorGroup:read,write,delete,revert All:read ##master-page:HelpTemplate ##master-date:Unknown-Date #format wiki #language en == R Plot function == Summary of R plot symbols, as specified by pch Plot symbols (plot character: pch) in R are specified by integers 1 to 25. I can't remember them, but it's easy to draw them to see what they are. === Draw R plot characters === {{{ # draw a plot, use all 25 plot characters # specify cex=2 so they are easier to see (cex = character expansion factor) plot(1:25, cex=2, pch=c(1:25), xlab="pch", main="pch Summary (plot char)") }}} attachment:R_pch_key.png ---- R is available from [http://cran.r-project.org/ CRAN] CategoryR