Page 1 of 1

How to restructure an unstructured page to a regularily dated panel?

Posted: Mon Feb 11, 2019 1:22 am
by mamo
Dear Eviews team,

I use Eviews 10+ March 2018 build

Is there a straightforward approach to restructuring an unstructured workfile page so as to obtain a regular dated panel structure?
See example program below.

Best
mamo

Code: Select all

wfcreate u 50 series crossid=@ceiling(@obsid/10) 'How can this be restructured to obtain a regular dated panel - for instance, annual data 2001-2010 with 5 cross sections ? 'The following line would not work! pagestruct(freq=a, start=2000, end=2010) @date(@date) crossid

Re: How to restructure an unstructured page to a regularily dated panel?

Posted: Mon Feb 11, 2019 8:47 am
by EViews Gareth
You have to have an already existing date and cross id series.

Code: Select all

wfcreate u 50 series crossid=@ceiling(@obsid/10) series date = @mod(@trend,10) + 2000 pagestruct @date(date) crossid