<?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: QQ plot results blank in output window in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/QQ-plot-results-blank-in-output-window/m-p/63223#M2150</link>
    <description>Hi:&lt;BR /&gt;
  I am not sure what's happening. This code works for me with SASHELP.CLASS.&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods trace on / label;&lt;BR /&gt;
           &lt;BR /&gt;
options gstyle=on;&lt;BR /&gt;
ods graphics on;&lt;BR /&gt;
ods listing style=listing;&lt;BR /&gt;
proc univariate data=sashelp.class;&lt;BR /&gt;
var age height weight;&lt;BR /&gt;
qqplot / normal(mu=est sigma=est);&lt;BR /&gt;
run;&lt;BR /&gt;
ods graphics off;&lt;BR /&gt;
    &lt;BR /&gt;
ods trace off;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                          &lt;BR /&gt;
Once I look in the SAS Log, I can see that the ODS TRACE information for the QQ Plot is named "QQPlot" and so for my ODS RTF step, I have selected only the QQPlot graphical objects. When I open the RTF file with Microsoft Word, I see only the 3 plots, one each for Age, Height and Weight.          &lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
** Review TRACE information in SAS log;&lt;BR /&gt;
** To select ONLY the QQPLOT output, use ODS SELECT Statement.; &lt;BR /&gt;
                                    &lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods rtf file='c:\temp\qqplot_only.rtf';&lt;BR /&gt;
ods rtf select QQPlot;&lt;BR /&gt;
ods graphics on;&lt;BR /&gt;
  proc univariate data=sashelp.class;&lt;BR /&gt;
    title 'Use ODS SELECT statement to get QQPlot Only';&lt;BR /&gt;
    var age height weight;&lt;BR /&gt;
    qqplot / normal(mu=est sigma=est);&lt;BR /&gt;
run;&lt;BR /&gt;
ods graphics off;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
[/pre]</description>
    <pubDate>Mon, 17 Jan 2011 23:18:09 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2011-01-17T23:18:09Z</dc:date>
    <item>
      <title>QQ plot results blank in output window</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/QQ-plot-results-blank-in-output-window/m-p/63222#M2149</link>
      <description>The first time I run proc univariate to generate a qq plot after initially, I can see the data points on the graph that is generated. Any subsequent time after the first run of proc univariate to generate a qq plot, the tables appears with proper labeling of x axis and y axis, but there are no data points present. No error message is found in the log. Not sure what is happening, but I really need to fix it. Also, if I use proc univariate to make a histogram, the histograms show up each time, just not the qq plots. Very perplexed by this. Any help is appreciated!&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
example of my code&lt;BR /&gt;
&lt;BR /&gt;
proc univariate data=hale.EAI_EA_FinalData;&lt;BR /&gt;
var ebna58_q ebna_1_q ebv_vca_q gmr_q grr_q grx4_q ro169_q;&lt;BR /&gt;
qqplot / normal(mu=est sigma=est);;&lt;BR /&gt;
run;

Message was edited by: JHale</description>
      <pubDate>Mon, 17 Jan 2011 20:56:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/QQ-plot-results-blank-in-output-window/m-p/63222#M2149</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-01-17T20:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: QQ plot results blank in output window</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/QQ-plot-results-blank-in-output-window/m-p/63223#M2150</link>
      <description>Hi:&lt;BR /&gt;
  I am not sure what's happening. This code works for me with SASHELP.CLASS.&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods trace on / label;&lt;BR /&gt;
           &lt;BR /&gt;
options gstyle=on;&lt;BR /&gt;
ods graphics on;&lt;BR /&gt;
ods listing style=listing;&lt;BR /&gt;
proc univariate data=sashelp.class;&lt;BR /&gt;
var age height weight;&lt;BR /&gt;
qqplot / normal(mu=est sigma=est);&lt;BR /&gt;
run;&lt;BR /&gt;
ods graphics off;&lt;BR /&gt;
    &lt;BR /&gt;
ods trace off;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                          &lt;BR /&gt;
Once I look in the SAS Log, I can see that the ODS TRACE information for the QQ Plot is named "QQPlot" and so for my ODS RTF step, I have selected only the QQPlot graphical objects. When I open the RTF file with Microsoft Word, I see only the 3 plots, one each for Age, Height and Weight.          &lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
** Review TRACE information in SAS log;&lt;BR /&gt;
** To select ONLY the QQPLOT output, use ODS SELECT Statement.; &lt;BR /&gt;
                                    &lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods rtf file='c:\temp\qqplot_only.rtf';&lt;BR /&gt;
ods rtf select QQPlot;&lt;BR /&gt;
ods graphics on;&lt;BR /&gt;
  proc univariate data=sashelp.class;&lt;BR /&gt;
    title 'Use ODS SELECT statement to get QQPlot Only';&lt;BR /&gt;
    var age height weight;&lt;BR /&gt;
    qqplot / normal(mu=est sigma=est);&lt;BR /&gt;
run;&lt;BR /&gt;
ods graphics off;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 17 Jan 2011 23:18:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/QQ-plot-results-blank-in-output-window/m-p/63223#M2150</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-01-17T23:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: QQ plot results blank in output window</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/QQ-plot-results-blank-in-output-window/m-p/63224#M2151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Your issue may be resolved by the following addition to your code. Notice the first and last line.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;ods graphics on;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc univariate data=hale.EAI_EA_FinalData;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;var ebna58_q ebna_1_q ebv_vca_q gmr_q grr_q grx4_q ro169_q;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;qqpslot / normal(mu=est sigma=est);;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;ods graphics off;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Cheers, please post if this works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 15:59:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/QQ-plot-results-blank-in-output-window/m-p/63224#M2151</guid>
      <dc:creator>SAMKORKIS</dc:creator>
      <dc:date>2015-06-22T15:59:14Z</dc:date>
    </item>
  </channel>
</rss>

