I have a text file with monthly data (see attached example.txt) that I want to import. My problem is that the series are written horizontally while EViews assumes that they are written vertically. That is, EViews yields series named e.g. data200903 and not firstser.
Thus, I guess that I would need to pivot the data panel before I can give it a dated structure. I thought that the code below would get me started, but there seems to be some problem with the pagestack command.
Code: Select all
wfopen(type=text) example.txt colhead=1 delim=;
pagestack data*
Any help would be much appreciated.