<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Too many variables for proc sgscatter in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983498#M49257</link>
    <description>&lt;P&gt;I can think of several ways&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Principal Components Analysis, plot of the scores in the first k dimensions&lt;/P&gt;
&lt;P&gt;2. Selecting just a few "important" variables and scatterplotting those&lt;/P&gt;
&lt;P&gt;3. Split the 22x22 grid into many smaller grids&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As always, people need to tell us WHY you are doing this, and people need to tell us WHAT you would like to learn from this exercise. This would lead to much more targeted and useful replies. Don't just tell us the programming step(s) you are having trouble with.&lt;/P&gt;</description>
    <pubDate>Sat, 14 Feb 2026 21:45:25 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2026-02-14T21:45:25Z</dc:date>
    <item>
      <title>Too many variables for proc sgscatter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983492#M49255</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to see the bivariate analysis with&amp;nbsp;&lt;STRONG&gt;proc sgscatter&lt;/STRONG&gt; but I have 22 variables. The output graph is too small to read.&lt;/P&gt;
&lt;P&gt;Do you know, please how to improve this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Sat, 14 Feb 2026 18:56:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983492#M49255</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2026-02-14T18:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Too many variables for proc sgscatter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983498#M49257</link>
      <description>&lt;P&gt;I can think of several ways&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Principal Components Analysis, plot of the scores in the first k dimensions&lt;/P&gt;
&lt;P&gt;2. Selecting just a few "important" variables and scatterplotting those&lt;/P&gt;
&lt;P&gt;3. Split the 22x22 grid into many smaller grids&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As always, people need to tell us WHY you are doing this, and people need to tell us WHAT you would like to learn from this exercise. This would lead to much more targeted and useful replies. Don't just tell us the programming step(s) you are having trouble with.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Feb 2026 21:45:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983498#M49257</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2026-02-14T21:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Too many variables for proc sgscatter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983499#M49258</link>
      <description>&lt;P&gt;If the problem is that the large number of variables causes the individual plots to be too small, one option is to increase the size of the graph. With a larger graph, you might not be able to see all of it within page boundaries, but you can pan around within it to look at the individual plots which should now be large enough to be useful. For example, if you use the typical HTML destination for your output, the following uses the HEIGHT= and WIDTH= options in the ODS GRAPHICS statement to create a larger graph size. In the HTML output window, you can scroll right, left, up, and down to view the individual plots as needed.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics / height=60in width=60in;
proc sgscatter data=sashelp.junkmail;
matrix
            Address     Addresses    All       Bracket    Business
            CS          CapAvg       CapLong   CapTotal   Conference
            Credit      Data         Direct    Dollar     Edu
            Email       Exclamation  Font      Free       George
            HP          HPL          
;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 14 Feb 2026 21:29:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983499#M49258</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2026-02-14T21:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Too many variables for proc sgscatter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983500#M49259</link>
      <description>&lt;P&gt;Or, you could not change HEIGHT= and WIDTH= and instead create a series of graphs showing 5x5 subsets of the plots in the full scatterplot. For example,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* first vertical strip of 5 plots in full 22x22 scatterplot */
proc sgscatter data=sashelp.junkmail;
compare 
  y=(Address     Addresses    All       Bracket    Business)
  x=(Address     Addresses    All       Bracket    Business);
run;
proc sgscatter data=sashelp.junkmail;
compare 
  y=(CS          CapAvg       CapLong   CapTotal   Conference)
  x=(Address     Addresses    All       Bracket    Business);
run;
/* ... other variable sets in 1st strip of 5 plots ... */
proc sgscatter data=sashelp.junkmail;
compare 
  y=(            HP          HPL)
  x=(Address     Addresses    All       Bracket    Business);
run;

/* second vertical strip of full scatterplot */
proc sgscatter data=sashelp.junkmail;
compare 
  y=(CS          CapAvg       CapLong   CapTotal   Conference)
  x=(CS          CapAvg       CapLong   CapTotal   Conference);
run;
/* ... other variable sets in 2nd strip ... */
proc sgscatter data=sashelp.junkmail;
compare 
  y=(            HP          HPL)
  x=(CS          CapAvg       CapLong   CapTotal   Conference);
run;

/*... 3rd, 4th, and 5th strips ending with ... */
proc sgscatter data=sashelp.junkmail;
compare 
  y=(            HP          HPL)
  x=(            HP          HPL);
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 14 Feb 2026 22:05:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983500#M49259</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2026-02-14T22:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Too many variables for proc sgscatter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983501#M49260</link>
      <description>&lt;P&gt;As &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt; showed you , you could use " height=60in width=60in;" to control the size of graph .&lt;/P&gt;
&lt;P&gt;Or creating a triangle correlation matrix like :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/12/11/displaying-upper-lower-triangle-correlation-matrix/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2017/12/11/displaying-upper-lower-triangle-correlation-matrix/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Feb 2026 02:10:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983501#M49260</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-02-15T02:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Too many variables for proc sgscatter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983516#M49261</link>
      <description>&lt;P&gt;My second post shows how to produce the 5x5 subset plots in the lower triangle of the scatterplot matrix.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 02:10:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983516#M49261</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2026-02-16T02:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: Too many variables for proc sgscatter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983523#M49262</link>
      <description>Thank you, StatDave!</description>
      <pubDate>Mon, 16 Feb 2026 11:14:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Too-many-variables-for-proc-sgscatter/m-p/983523#M49262</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2026-02-16T11:14:00Z</dc:date>
    </item>
  </channel>
</rss>

