Re: [R] Making plots in big scatterplot matrix large enough to see

2010-09-03 Thread Greg Snow
.@j-paine.org] > Sent: Thursday, September 02, 2010 10:16 PM > To: Greg Snow > Cc: r-help@r-project.org > Subject: RE: [R] Making plots in big scatterplot matrix large enough to > see > > Greg, thanks for the suggestion. That's useful to know for future work. > It's not s

Re: [R] Making plots in big scatterplot matrix large enough to see

2010-09-02 Thread Peter Ehlers
ail.org 801.408.8111 -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r- project.org] On Behalf Of Jocelyn Paine Sent: Monday, August 30, 2010 10:21 PM To: r-help@r-project.org Subject: [R] Making plots in big scatterplot matrix large enough to see I've got a dat

Re: [R] Making plots in big scatterplot matrix large enough to see

2010-09-02 Thread Peter Ehlers
On 2010-08-31 13:49, Greg Snow wrote: Look at the pairs2 function in the TeachingDemos package, this lets you produce smaller portions of the total scatterplot matrix at a time (with bigger plots), you could print the smaller portions then assemble the full matrix on a large wall, or just use

Re: [R] Making plots in big scatterplot matrix large enough to see

2010-09-02 Thread Jocelyn Paine
Of Jocelyn Paine Sent: Monday, August 30, 2010 10:21 PM To: r-help@r-project.org Subject: [R] Making plots in big scatterplot matrix large enough to see I've got a data frame with 23 columns, and wanted to plot a scatterplot matrix of it. I called pairs( df ) where 'df' is my data

Re: [R] Making plots in big scatterplot matrix large enough to see

2010-09-02 Thread Jocelyn Paine
William, Thanks. I adapted your example by doing: library(psych) pdf(file="myfile.pdf",width=30,height=30) pairs.panels(data,gap=0) dev.off() The R part worked. I could see it doing so when I replaced the call to 'pdf' by windows(width=30,height=30) . The remaining problem was that A

Re: [R] Making plots in big scatterplot matrix large enough to see

2010-08-31 Thread Greg Snow
010 10:21 PM > To: r-help@r-project.org > Subject: [R] Making plots in big scatterplot matrix large enough to see > > I've got a data frame with 23 columns, and wanted to plot a scatterplot > matrix of it. I called >pairs( df ) > where 'df' is my data frame.

Re: [R] Making plots in big scatterplot matrix large enough to see

2010-08-31 Thread William Revelle
Jocelyn, In a partial answer to your question, try setting gap=0 in the calls to pairs. This will make the plots closer together. (You might also find pairs.panels in the psych package useful, -- it implements one of the help examples for pairs to report the histogram on the diagonal and

[R] Making plots in big scatterplot matrix large enough to see

2010-08-30 Thread Jocelyn Paine
I've got a data frame with 23 columns, and wanted to plot a scatterplot matrix of it. I called pairs( df ) where 'df' is my data frame. This did generate the matrix, but the plotting window did not expand to make the individual plots large enough to see. Each one was only about 10 pixels high