<?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: Parameter Estimates Output after PROC STEPWISE in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59607#M16823</link>
    <description>Yes</description>
    <pubDate>Sun, 09 Jan 2011 14:02:17 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2011-01-09T14:02:17Z</dc:date>
    <item>
      <title>Parameter Estimates Output after PROC STEPWISE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59605#M16821</link>
      <description>Hi everyone,&lt;BR /&gt;
&lt;BR /&gt;
Does somebody know how can I output the estimates that I obtained from PROC STEPWISE? I've tried the ODS (ods output parameterestimates=&lt;DATA set=""&gt;) but it gives me back a plain response that "Output 'parameterestimates' was not created".&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance,&lt;BR /&gt;
&lt;BR /&gt;
NoamM&lt;/DATA&gt;</description>
      <pubDate>Thu, 06 Jan 2011 14:19:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59605#M16821</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-01-06T14:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Estimates Output after PROC STEPWISE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59606#M16822</link>
      <description>When it gives you this message, does the output you want get written to the OUTPUT (Listing) window?</description>
      <pubDate>Thu, 06 Jan 2011 15:10:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59606#M16822</guid>
      <dc:creator>Paige</dc:creator>
      <dc:date>2011-01-06T15:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Estimates Output after PROC STEPWISE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59607#M16823</link>
      <description>Yes</description>
      <pubDate>Sun, 09 Jan 2011 14:02:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59607#M16823</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-01-09T14:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Estimates Output after PROC STEPWISE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59608#M16824</link>
      <description>Hi:&lt;BR /&gt;
  Have you used ODS TRACE ON/OFF to reveal EXACTLY the name of the output objects being created??? Even though the object may be named Parameter Estimate in the output, the output object name could be slightly different.&lt;BR /&gt;
 &lt;BR /&gt;
  If you would try:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS TRACE ON/ LABEL;&lt;BR /&gt;
. . . your procedure code . . .&lt;BR /&gt;
ODS TRACE OFF;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                               &lt;BR /&gt;
what you see in the SAS log are the names of all the output objects created for that particular run of your procedure. When you run the procedure, remember to use all the options that you would normally use to generate your output with the Parameter Estimates output.&lt;BR /&gt;
 &lt;BR /&gt;
I am not familiar with PROC STEPWISE, but I can duplicate your error message with PROC REG, for example, by incorrectly putting quotes around the simple object name. If you quote your selection, that means you want to select based on the LABEL or LABEL PATH -- in which case, the name of the object is 'Parameter Estimates' for PROC REG (with a space in the object LABEL). Otherwise, no quotes are needed to use the simple name of ParameterEstimates (for PROC REG). Using a partial LABEL PATH, the correct quoted string for ODS OUTPUT (for PROC REG) would be &lt;BR /&gt;
[pre]&lt;BR /&gt;
ods output 'Parameter Estimates'=work.pe3;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                  &lt;BR /&gt;
 Compare the two different PROC REG steps shown in the LOG output below. For space purposes all the ODS TRACE info was removed for everything except the ParameterEstimates trace info.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
15   ods listing;&lt;BR /&gt;
16   ods trace on /label;&lt;BR /&gt;
17   ods output 'parameterestimates'=work.pe1;&lt;BR /&gt;
18   proc reg data=sashelp.class;&lt;BR /&gt;
19     model age=weight;&lt;BR /&gt;
20   run;&lt;BR /&gt;
                                         &lt;BR /&gt;
                                                       &lt;BR /&gt;
Output Added:&lt;BR /&gt;
-------------&lt;BR /&gt;
Name:       ParameterEstimates&lt;BR /&gt;
Label:      Parameter Estimates&lt;BR /&gt;
Template:   Stat.REG.ParameterEstimates&lt;BR /&gt;
Path:       Reg.MODEL1.Fit.Age.ParameterEstimates&lt;BR /&gt;
Label Path: 'The Reg Procedure'.'MODEL1'.'Fit'.Age.'Parameter Estimates'&lt;BR /&gt;
-------------&lt;BR /&gt;
21   quit;&lt;BR /&gt;
             &lt;BR /&gt;
WARNING: Output ''parameterestimates'' was not created.  Make sure that the output object name, label, or path is&lt;BR /&gt;
         spelled correctly.  Also, verify that the appropriate procedure options are used to produce the requested&lt;BR /&gt;
         output object.  For example, verify that the NOPRINT option is not used.&lt;BR /&gt;
NOTE: PROCEDURE REG used (Total process time):&lt;BR /&gt;
      real time           0.04 seconds&lt;BR /&gt;
      cpu time            0.04 seconds&lt;BR /&gt;
           &lt;BR /&gt;
            &lt;BR /&gt;
22   ods trace off;&lt;BR /&gt;
23&lt;BR /&gt;
24   ods output parameterestimates=work.pe2;&lt;BR /&gt;
25   proc reg data=sashelp.class;&lt;BR /&gt;
26     model age=weight;&lt;BR /&gt;
27   run;&lt;BR /&gt;
          &lt;BR /&gt;
NOTE: The data set WORK.PE2 has 2 observations and 8 variables.&lt;BR /&gt;
28   quit;&lt;BR /&gt;
        &lt;BR /&gt;
NOTE: PROCEDURE REG used (Total process time):&lt;BR /&gt;
      real time           0.07 seconds&lt;BR /&gt;
      cpu time            0.07 seconds&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
      <pubDate>Sun, 09 Jan 2011 17:12:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Parameter-Estimates-Output-after-PROC-STEPWISE/m-p/59608#M16824</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-01-09T17:12:08Z</dc:date>
    </item>
  </channel>
</rss>

