Page 1 of 1

Time Series Data: First Quarter of Each Year

Posted: Mon May 09, 2011 10:41 am
by BionicMan
I have quarterly time series data. Want to know how to program Eviews in order to create a workfile that just shows data for the first quarter of each year, with the remaining quarters removed. Example of how I would like the data displayed is shown below;

2005Q1 100
2006Q1 200
2007Q1 150
2008Q1 300
2009Q1 175

Any help on this is appreciated.
Richard

Re: Time Series Data: First Quarter of Each Year

Posted: Mon May 09, 2011 10:51 am
by EViews Gareth

Code: Select all

pagecontract if @quarter=1

Re: Time Series Data: First Quarter of Each Year

Posted: Mon May 09, 2011 11:07 am
by BionicMan
Thanks for the quick reply. Richard