<?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: Correlation Matrix Plot Not Plotting All Variables in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421727#M8977</link>
    <description>&lt;P&gt;Possible causes without seeing the data:&lt;/P&gt;
&lt;P&gt;The variable is not numeric. check with Proc Contents or anything that displays column/ variable properties.&lt;/P&gt;
&lt;P&gt;The variable is missing for all the records where insight=1 for one or more levels of the By variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One check would be Proc freq with insight*Insightsos on the tables statement with an identical By statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Insufficient space in the graphics area. You can test this by setting width and height options on the ODS Graphics to values such as&lt;/P&gt;
&lt;P&gt;ods graphics on / width=10in height=10in;&lt;/P&gt;
&lt;P&gt;to use a 10 inch by 10 inch display.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you get any tabular output for that variable?&lt;/P&gt;</description>
    <pubDate>Fri, 15 Dec 2017 23:15:17 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-12-15T23:15:17Z</dc:date>
    <item>
      <title>Correlation Matrix Plot Not Plotting All Variables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421579#M8972</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to make correlation matrix plots using 6 variables: height, weight, age, &amp;nbsp;and the ultrasound measures stiffness index, bua, and sos. For some reason, I can't get the plot to include all the variables - it cuts off the last one, "Insightsos". Can you tell me what I can do to get SAS to plot all these variables in the matrix? I'm using SAS 9.4 M4 for Windows 7 64bit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Cara&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;
proc corr data=achilles_m nomiss plots=matrix(histogram) plots(maxpoints=none);  
	by winbonevisit;
	where insight=1;
	var Height Weight1 Age Insightstiff Insightbua Insightsos;
	format winbonevisit winbonevisitf.;
run;
ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MatrixPlot11.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17321iAB560AC811F94884/image-size/large?v=v2&amp;amp;px=999" role="button" title="MatrixPlot11.png" alt="MatrixPlot11.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2017 14:41:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421579#M8972</guid>
      <dc:creator>cbt2119</dc:creator>
      <dc:date>2017-12-15T14:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Matrix Plot Not Plotting All Variables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421585#M8973</link>
      <description>&lt;P&gt;&lt;SPAN class=" AAterm "&gt;From the documentation:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=" AAterm "&gt;NVAR=ALL&amp;nbsp;|&amp;nbsp;&lt;SPAN class="phrase AAargument"&gt;n&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="indexterm" name="procstat.corr.a0000000097" target="_blank"&gt;&lt;/A&gt;&lt;A class="indexterm" name="procstat.corr.a0000000098" target="_blank"&gt;&lt;/A&gt;specifies the maximum number of variables in the VAR list to be displayed in the matrix plot, where&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="inlinemediaobject"&gt;&lt;IMG style="margin: 0px; padding: 0px; border: 0px; font-weight: normal; font-style: normal; line-height: 1.25em; font-family: inherit; text-align: left; vertical-align: 0px;" class="math" src="http://support.sas.com/documentation/cdl/en/procstat/66703/HTML/default/images/procstat_corr0018.png" border="0" alt="$n &amp;gt; 0$" width="32" height="10" /&gt;&lt;/SPAN&gt;. The NVAR=ALL option uses all variables in the VAR list. By default, NVAR=5.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2017 15:02:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421585#M8973</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-12-15T15:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Matrix Plot Not Plotting All Variables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421637#M8976</link>
      <description>&lt;P&gt;This worked, thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2017 16:21:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421637#M8976</guid>
      <dc:creator>cbt2119</dc:creator>
      <dc:date>2017-12-15T16:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Matrix Plot Not Plotting All Variables</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421727#M8977</link>
      <description>&lt;P&gt;Possible causes without seeing the data:&lt;/P&gt;
&lt;P&gt;The variable is not numeric. check with Proc Contents or anything that displays column/ variable properties.&lt;/P&gt;
&lt;P&gt;The variable is missing for all the records where insight=1 for one or more levels of the By variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One check would be Proc freq with insight*Insightsos on the tables statement with an identical By statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Insufficient space in the graphics area. You can test this by setting width and height options on the ODS Graphics to values such as&lt;/P&gt;
&lt;P&gt;ods graphics on / width=10in height=10in;&lt;/P&gt;
&lt;P&gt;to use a 10 inch by 10 inch display.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you get any tabular output for that variable?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2017 23:15:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Correlation-Matrix-Plot-Not-Plotting-All-Variables/m-p/421727#M8977</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-12-15T23:15:17Z</dc:date>
    </item>
  </channel>
</rss>

