<?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: Panal data - sorting of the data in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16830#M3137</link>
    <description>Thanks for the help!&lt;BR /&gt;
this is the SAS log after a sorting and freq procedure.&lt;BR /&gt;
&lt;BR /&gt;
16   Proc sort data=MP.Balanced;&lt;BR /&gt;
17       by NAAM JAAR;&lt;BR /&gt;
18   Run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Input data set is already sorted, no sorting done.&lt;BR /&gt;
NOTE: PROCEDURE SORT used (Total process time):&lt;BR /&gt;
      real time           0.00 seconds&lt;BR /&gt;
      cpu time            0.01 seconds&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
19   Proc freq data=MP.Balanced;&lt;BR /&gt;
20   run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: There were 14930 observations read from the data set MP.BALANCED.&lt;BR /&gt;
NOTE: PROCEDURE FREQ used (Total process time):&lt;BR /&gt;
      real time           7.90 seconds&lt;BR /&gt;
      cpu time            1.62 seconds&lt;BR /&gt;
&lt;BR /&gt;
I hope this is what you needed?</description>
    <pubDate>Thu, 09 Apr 2009 15:23:53 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-04-09T15:23:53Z</dc:date>
    <item>
      <title>Panal data - sorting of the data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16828#M3135</link>
      <description>Hey,&lt;BR /&gt;
I'm new to SAS and i need to carry out a panel data. I have a dataset with 3000 different companies, over 5 years and 7 variables. I imported the dataset from excel in the following order:&lt;BR /&gt;
NAME YEAR DEPVAR  EXVAR1  EXVAR2 ...&lt;BR /&gt;
comp1 2003   2335         569         ...&lt;BR /&gt;
comp1 2004   2569         7856&lt;BR /&gt;
comp1 2005   459           ...&lt;BR /&gt;
comp1 2006   6359&lt;BR /&gt;
comp1 2007   4589&lt;BR /&gt;
comp2 2003   6.357&lt;BR /&gt;
comp2 2004   7896&lt;BR /&gt;
comp2 2005   783&lt;BR /&gt;
comp2 2006   891&lt;BR /&gt;
comp2 2007   456&lt;BR /&gt;
...&lt;BR /&gt;
&lt;BR /&gt;
i sorted the data by name and year  without any problems&lt;BR /&gt;
&lt;BR /&gt;
then i wanted to carry out a panel procedure and got the following message:&lt;BR /&gt;
ERROR: There is only one cross section or time series observation. Computations will be terminated.&lt;BR /&gt;
&lt;BR /&gt;
anyone know what I did wrong? Do i have to declare that YEAR is a "year" to recognise the times series? any ideas???&lt;BR /&gt;
&lt;BR /&gt;
thanks a lot&lt;BR /&gt;
Fabienne</description>
      <pubDate>Thu, 09 Apr 2009 10:18:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16828#M3135</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-04-09T10:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Panal data - sorting of the data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16829#M3136</link>
      <description>I would recommend that you share some of your SAS log output (pasted in a forum reply) and confirm that you have successfully loaded your data, possibly with PROC MEANS or PROC FREQ.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
PROC PANEL documentation from SAS support &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/panel_toc.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/panel_toc.htm&lt;/A&gt;</description>
      <pubDate>Thu, 09 Apr 2009 12:22:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16829#M3136</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-04-09T12:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Panal data - sorting of the data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16830#M3137</link>
      <description>Thanks for the help!&lt;BR /&gt;
this is the SAS log after a sorting and freq procedure.&lt;BR /&gt;
&lt;BR /&gt;
16   Proc sort data=MP.Balanced;&lt;BR /&gt;
17       by NAAM JAAR;&lt;BR /&gt;
18   Run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Input data set is already sorted, no sorting done.&lt;BR /&gt;
NOTE: PROCEDURE SORT used (Total process time):&lt;BR /&gt;
      real time           0.00 seconds&lt;BR /&gt;
      cpu time            0.01 seconds&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
19   Proc freq data=MP.Balanced;&lt;BR /&gt;
20   run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: There were 14930 observations read from the data set MP.BALANCED.&lt;BR /&gt;
NOTE: PROCEDURE FREQ used (Total process time):&lt;BR /&gt;
      real time           7.90 seconds&lt;BR /&gt;
      cpu time            1.62 seconds&lt;BR /&gt;
&lt;BR /&gt;
I hope this is what you needed?</description>
      <pubDate>Thu, 09 Apr 2009 15:23:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16830#M3137</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-04-09T15:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Panal data - sorting of the data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16831#M3138</link>
      <description>Not really - I was hoping that you had already taken steps to validate the loading of your data into SAS, either using PROC FREQ or MEANS -- the OUTPUT window or the SASLIST output will have the FREQ reports for you to review.  I'd say that it's going to be up to you to do the validation.  Also, for others to review with the procedure, you should post your SAS log output from the failure reported.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 09 Apr 2009 17:44:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Panal-data-sorting-of-the-data/m-p/16831#M3138</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-04-09T17:44:47Z</dc:date>
    </item>
  </channel>
</rss>

