<?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: SAS 9.2 ODS OUTPUT in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73622#M2686</link>
    <description>On the PROC MODEL statement, you may need to specify PLOTS=STUDENTRESIDUAL. Check out the PLOTS option to see what plots are available to you.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Dan</description>
    <pubDate>Tue, 06 Apr 2010 14:05:53 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2010-04-06T14:05:53Z</dc:date>
    <item>
      <title>SAS 9.2 ODS OUTPUT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73621#M2685</link>
      <description>When I run this program in SAS 9.1.3, I get a file named ods_student with the Studentized residuals - which is what I want! If I run it in SAS 9.2 the file is not created and no error message appears from which I can try to find out what I am doing wrong. Can someone tell me how can I get the Studentized residuals?&lt;BR /&gt;
&lt;BR /&gt;
 Thank you&lt;BR /&gt;
&lt;BR /&gt;
options pagesize=60 linesize=85 pageno=1 nolabel;&lt;BR /&gt;
libname SAFMODBD 'D:\HOME\ENSINO\SAFMOD\dados\SAFMOD_data.mdb';&lt;BR /&gt;
data basededados; set SAFMODBD.Ec_w;&lt;BR /&gt;
y=Ww;&lt;BR /&gt;
proc  means noprint;run;quit;&lt;BR /&gt;
ODS HTML; &lt;BR /&gt;
ODS LISTING CLOSE; &lt;BR /&gt;
ODS TRACE ON; &lt;BR /&gt;
ODS GRAPHICS ON; &lt;BR /&gt;
ODS OUTPUT StudentResidualPlot=ods_student; &lt;BR /&gt;
proc model DATA=basededados;&lt;BR /&gt;
parms aw=0.01 bw=0.01 cw=0.01;&lt;BR /&gt;
y=aw*(G**bw)*(hdom**cw); &lt;BR /&gt;
fit y / out=regsai  outest=parm ;&lt;BR /&gt;
outvars N ;&lt;BR /&gt;
run; quit;&lt;BR /&gt;
ODS OUTPUT CLOSE;&lt;BR /&gt;
ODS GRAPHICS OFF;&lt;BR /&gt;
ODS TRACE OFF;&lt;BR /&gt;
ODS HTML CLOSE;&lt;BR /&gt;
ODS LISTING;</description>
      <pubDate>Tue, 06 Apr 2010 13:54:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73621#M2685</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-04-06T13:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.2 ODS OUTPUT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73622#M2686</link>
      <description>On the PROC MODEL statement, you may need to specify PLOTS=STUDENTRESIDUAL. Check out the PLOTS option to see what plots are available to you.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Dan</description>
      <pubDate>Tue, 06 Apr 2010 14:05:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73622#M2686</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2010-04-06T14:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.2 ODS OUTPUT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73623#M2687</link>
      <description>Yes, if I write&lt;BR /&gt;
&lt;BR /&gt;
proc model DATA=dados PLOTS (only)=(STUDENTRESIDUAL);&lt;BR /&gt;
&lt;BR /&gt;
I get the plot in the results, by not the file with the residuals. The only message I get is this one:&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Output 'STUDENTRESIDUAL' was not created.  Make sure that the output object &lt;BR /&gt;
         name, label, or path is spelled correctly.  Also, verify that the &lt;BR /&gt;
         appropriate procedure options are used to produce the requested output &lt;BR /&gt;
         object.  For example, verify that the NOPRINT option is not used.&lt;BR /&gt;
&lt;BR /&gt;
When I write:&lt;BR /&gt;
&lt;BR /&gt;
ODS OUTPUT ParameterEstimates=ods_student; &lt;BR /&gt;
&lt;BR /&gt;
I get the ods_student file whith the parameter estimates, so the problem is really what to write to get the studentized residuals...</description>
      <pubDate>Tue, 06 Apr 2010 14:12:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73623#M2687</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-04-06T14:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.2 ODS OUTPUT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73624#M2688</link>
      <description>I beleive you'll need to set the global plot option 'unpackpanel' to enable both the plot and data set creation:&lt;BR /&gt;
&lt;BR /&gt;
proc model DATA=basededados plots(unpackpanel)=studentresidual;&lt;BR /&gt;
   parms aw=0.01 bw=0.01 cw=0.01;&lt;BR /&gt;
   y=aw*(G**bw)*(hdom**cw); &lt;BR /&gt;
   fit y / out=regsai outest=parm ;&lt;BR /&gt;
   outvars N ;&lt;BR /&gt;
run; quit;</description>
      <pubDate>Tue, 06 Apr 2010 15:34:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73624#M2688</guid>
      <dc:creator>kessler</dc:creator>
      <dc:date>2010-04-06T15:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.2 ODS OUTPUT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73625#M2689</link>
      <description>Thank you so much, it worked! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
 Tânia</description>
      <pubDate>Wed, 07 Apr 2010 09:23:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-ODS-OUTPUT/m-p/73625#M2689</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-04-07T09:23:04Z</dc:date>
    </item>
  </channel>
</rss>

