Page 1 of 1

Descriptive statistics for stacked panel data

Posted: Sun Apr 07, 2013 5:25 pm
by btretter
How do you find the descriptive statistics for individual cross sections when the observations are sequential stacked format.
Therefore each country, for instance, is id'ed by the number before the year. Therefore 1-95, 1-96, 1-97, 1-98, 2-95,2-96 and so on. How can i limit the sample to 1-95 - 1-99?

Thank you

Re: Descriptive statistics for stacked panel data

Posted: Sun Apr 07, 2013 6:04 pm
by EViews Gareth
If you're just interested in a single cross-section, you can do:

Code: Select all

Smpl if @crossid=1
Etc...

To see statistics by cross-section simultaneously, open the series and use View->Descriptive Statistics->Stats by classification, and use "@crossid" as the "Series/Group for classify".

Re: Descriptive statistics for stacked panel data

Posted: Mon Apr 08, 2013 4:53 am
by btretter
Thank you very much.