Hi everyone, I'm a newbie and this is my first post. My boss wants me to make a series of scatter plots where 76 variables are plotted against each other. I know how to do this using pair()...my problem is that there are just too many plots to fit in the window. Is there any way I can get all the plots to fit and make the font size and marker size scale so it is readable? My goal is to create a *.pdf file that I can send to our large plotter. Thank you, Audrey Rager -- View this message in context: http://r.789695.n4.nabble.com/very-large-pair-plot-tp3634075p3634075.html Sent from the R help mailing list archive at Nabble.com.
On 29.06.2011 23:28, ahrager wrote:> Hi everyone, > > I'm a newbie and this is my first post. > > My boss wants me to make a series of scatter plots where 76 variables are > plotted against each other. I know how to do this using pair()...my problem > is that there are just too many plots to fit in the window. > > Is there any way I can get all the plots to fit and make the font size and > marker size scale so it is readable? My goal is to create a *.pdf file that > I can send to our large plotter.Exactly: pdf(....., height=..., width=...) pairs(....) dev.off() and set height and width appropriately. Then you can zoom in using a pdf viewer or print on your giga-sized plotter. Uwe Ligges> > Thank you, > Audrey Rager > > > > -- > View this message in context: http://r.789695.n4.nabble.com/very-large-pair-plot-tp3634075p3634075.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > 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.
In addition to Uwe's answer, you might also want to consider the pairs2 function in the TeachingDemos package. It lets you plot sections of the overall scatterplot matrix rather than the whole thing, so you could spread the entire scatterplot matrix over multiple pages. -- Gregory (Greg) L. Snow Ph.D. Statistical Data Center Intermountain Healthcare greg.snow at imail.org 801.408.8111> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- > project.org] On Behalf Of ahrager > Sent: Wednesday, June 29, 2011 3:28 PM > To: r-help at r-project.org > Subject: [R] very large pair() plot > > Hi everyone, > > I'm a newbie and this is my first post. > > My boss wants me to make a series of scatter plots where 76 variables > are > plotted against each other. I know how to do this using pair()...my > problem > is that there are just too many plots to fit in the window. > > Is there any way I can get all the plots to fit and make the font size > and > marker size scale so it is readable? My goal is to create a *.pdf file > that > I can send to our large plotter. > > Thank you, > Audrey Rager > > > > -- > View this message in context: http://r.789695.n4.nabble.com/very-large- > pair-plot-tp3634075p3634075.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > 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.