Search found 22 matches
- Thu Jun 09, 2011 3:53 pm
- Forum: Programming
- Topic: working on multiple workfile
- Replies: 1
- Views: 2782
working on multiple workfile
I understand that you said the length of series for a workfile should be same. So here is the issue with working with different workfile. 1. If I have two or more different excel files which I'll import into Eviews, can they be in the same workfile? or can never even if the length and structure is t...
- Wed Jun 08, 2011 3:54 pm
- Forum: Programming
- Topic: about sample
- Replies: 2
- Views: 2735
Re: about sample
Very clear. thanks!
- Wed Jun 08, 2011 3:08 pm
- Forum: Programming
- Topic: about sample
- Replies: 2
- Views: 2735
about sample
I import a panel data with 1000 rows and 3 collumns, for 10 regions each having 100 data points along time. The three collumns are: region, time (quarterly pattern), and x (econ data). 1. i used code wfopen to get the data in . How does eviews detect which one is the time indicator for my series? ac...
- Wed Jun 08, 2011 1:22 pm
- Forum: Programming
- Topic: .X12 seasonal adjustment function
- Replies: 5
- Views: 7286
Re: .X12 seasonal adjustment function
I c. I'm doing it in SAS. Another question, when I export series with WFSAVE, if the series names are area_0, area_1, ....area_300. And I need to export only the first 256 series to one .csv file (limit) and the rest into a second group, how do I name those series in abbreviation but not listing all...
- Wed Jun 08, 2011 9:22 am
- Forum: Programming
- Topic: .X12 seasonal adjustment function
- Replies: 5
- Views: 7286
Re: .X12 seasonal adjustment function
Got your point, thanks! But a data transformation question here: If I have this dataset from excel in 10 rows with each row as a region having 100 collumns of econ data for each quarter starting from 1980Q1, after I import it into Eviews, how can I transform it to the series you mentioned for the .X...
- Tue Jun 07, 2011 5:07 pm
- Forum: Programming
- Topic: .X12 seasonal adjustment function
- Replies: 5
- Views: 7286
.X12 seasonal adjustment function
Hi, I don't know how this .X12 seasonal adjustment works. Basically, in implementation, 1. does it matter if the data frequency is quarterly or mothly or annual? do I have to have a series to indicate its frequency? 2. if I have a 10*100 matrix, with each of the 10 rows representing a region and 100...
- Thu Apr 28, 2011 2:01 pm
- Forum: Programming
- Topic: wfsave ?
- Replies: 7
- Views: 7433
Re: wfsave ?
When you use WFSAVE, the entire workfile will be saved under what ever filename you choose to give it (see the Command Reference for more information on WFSAVE). By default, WFSAVE will save the file as an EViews workfile, and all objects in all pages in the workfile (groups, series, equations, mat...
- Thu Apr 28, 2011 1:59 pm
- Forum: Programming
- Topic: wfopen for dated panel data
- Replies: 2
- Views: 2987
Re: wfopen for dated panel data
Could you post the file? I have two collumns in this file indicating about date. One is called time in the format of 1990Q1, another is a modified time variable for our own internal use, with a name yearqq and in the format of 1990.125. I removed the 1990.125 format variable yearqq, and now runs th...
- Thu Apr 28, 2011 1:53 pm
- Forum: Programming
- Topic: mtos error message
- Replies: 4
- Views: 5143
Re: mtos error message
Sorry, and thank you!You have a space between mtos and the (.
- Thu Apr 28, 2011 10:16 am
- Forum: Programming
- Topic: mtos error message
- Replies: 4
- Views: 5143
Re: mtos error message
Cannot replicate: create u 100 vector(100) a rnd(a) series b mtos(a,b) Hi Gareth, thanks for the reply. I tested your code. It does work. But in my case, I don't need to create any vector with random number. I have already a vector. I have a vector called ur_sa0, which comes from a matrix sa. Then ...
- Wed Apr 27, 2011 5:06 pm
- Forum: Programming
- Topic: wfopen for dated panel data
- Replies: 2
- Views: 2987
wfopen for dated panel data
I used wfopen to open a dated panel data. When I run my program, I got error message about the sample "error in sample. Illegal date ....in ...". I opened the same data by file-->open-->foreign data. And I select dated panel structure, typing in the cross section and time variables, and ru...
- Wed Apr 27, 2011 5:02 pm
- Forum: Programming
- Topic: mtos error message
- Replies: 4
- Views: 5143
mtos error message
I have a vector a, and i try to use mtos to convert it to a series b. My code is:
series b
mtos(a, b).
the error message is below
An exclaimation mark in a yellow triangle, is not defined in "mtos(a,b)".
Do you have any clue? thanks!
series b
mtos(a, b).
the error message is below
An exclaimation mark in a yellow triangle, is not defined in "mtos(a,b)".
Do you have any clue? thanks!
- Tue Apr 26, 2011 3:39 pm
- Forum: Programming
- Topic: my SAVE and SAVEAS function don't work
- Replies: 17
- Views: 15494
Re: my SAVE and SAVEAS function don't work
Thanks for the reply! The save and save as function worked fine, until a few days ago, I tried to connect my SAS server file. I copied a program and paste it in my SAS server folder for work reason. I opened Eviews and worked on the code. I used file-->open-->program. I then tried to save the same f...
- Tue Apr 26, 2011 2:37 pm
- Forum: Programming
- Topic: my SAVE and SAVEAS function don't work
- Replies: 17
- Views: 15494
Re: my SAVE and SAVEAS function don't work
I reinstalled my Eviews7, the issue is still there. I find that, this issue only happens with the files saved on my SAS server. I can open a file from File->open, and then when I try to save it (save or save as), it says "unable to open file ". It may be about the system setup. Any clue to...
- Mon Apr 25, 2011 3:41 pm
- Forum: Programming
- Topic: work on different workfile
- Replies: 3
- Views: 3383
Re: work on different workfile
You shouldn't use READ, rather you should use IMPORT. Thanks for the quick reply! I tried import, first of all, it doesn't accept the full path of the server folder, and I still need to use my drive letter: import(t=txt) "W:\riskindex\RI_V3.1\code\main\All384MSA.csv" Second, it asks for t...
