<?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: proc panel in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88662#M4369</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, wow it does say that but I get this is error when I include the missing values for the dependent variable and non missing values for the independent variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Each observation for time point year=2011 has a missing value for at&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; least one variable in MODEL statement .&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Apr 2012 21:22:24 GMT</pubDate>
    <dc:creator>ravi101</dc:creator>
    <dc:date>2012-04-18T21:22:24Z</dc:date>
    <item>
      <title>proc panel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88658#M4365</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;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I am using proc panel to do some analysis.&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;proc panel outest=parms data = comgasfinal2 ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;id pa year;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;model cngc_fs =&amp;nbsp; time1 gasprice gsp1 hddcon scgc sdgec pgep1 scgp1 sdgep1/ rantwo parks;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;output out=panelout p=forecast;&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;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I am not sure if its me or it's the procedure but I am not able to forecast the future values of the dependent variable. Procedures like proc reg allow automatic calculation of&amp;nbsp; the future values of the dependent variable. Is this a limitation of proc panel? If so, is there a macro that I can use to automatically generate the final equation for the parameters estimated by proc panel?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 20:38:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88658#M4365</guid>
      <dc:creator>ravi101</dc:creator>
      <dc:date>2012-04-18T20:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: proc panel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88659#M4366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Says in the doc :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there are observations in the input data set with missing dependent &lt;BR /&gt;variable values but with nonmissing regressors, PROC PANEL can compute predicted &lt;BR /&gt;values and store them in an output data set by using the OUTPUT statement. Note &lt;BR /&gt;that the presence of such observations with missing dependent variable values &lt;BR /&gt;does not affect the model fit because these observations are excluded from the &lt;BR /&gt;calculation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, all you need is some observations with the independent variable values for which you want predictions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 20:54:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88659#M4366</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-04-18T20:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc panel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88660#M4367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried that but I get a error message saying you can't have any missing values in the dependent variable. Where did you read that it is ok to have missing values in the dependent variable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 21:00:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88660#M4367</guid>
      <dc:creator>ravi101</dc:creator>
      <dc:date>2012-04-18T21:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: proc panel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88661#M4368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here &lt;A href="http://support.sas.com/documentation/cdl/en/etsug/63939/HTML/default/viewer.htm#etsug_panel_sect021.htm"&gt;http://support.sas.com/documentation/cdl/en/etsug/63939/HTML/default/viewer.htm#etsug_panel_sect021.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 21:12:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88661#M4368</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-04-18T21:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc panel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88662#M4369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, wow it does say that but I get this is error when I include the missing values for the dependent variable and non missing values for the independent variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Each observation for time point year=2011 has a missing value for at&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; least one variable in MODEL statement .&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 21:22:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-panel/m-p/88662#M4369</guid>
      <dc:creator>ravi101</dc:creator>
      <dc:date>2012-04-18T21:22:24Z</dc:date>
    </item>
  </channel>
</rss>

