Search found 36 matches
- Tue Oct 30, 2012 1:26 pm
- Forum: Bug Reports
- Topic: EViews - Excel VBA integration
- Replies: 1
- Views: 4017
EViews - Excel VBA integration
Good afternoon, Strictly speaking, the following may not be a bug, but is something that definitively should be filed under "odd behavior". I'm mentioning this because it might others save some time researching this issue. Here's the situation: I'm calling EViews from an Excel spreadsheet....
- Thu Oct 25, 2012 11:50 am
- Forum: Programming
- Topic: Reading in string from EViews
- Replies: 2
- Views: 3878
Re: Reading in string from EViews
Whoaa!
Works. Many thanks! Philipp
Works. Many thanks! Philipp
- Thu Oct 25, 2012 10:57 am
- Forum: Programming
- Topic: Reading in string from EViews
- Replies: 2
- Views: 3878
Reading in string from EViews
Hi, I have a bit of difficulties to import a string from Excel. In the attached text file, I have build a string containing a number of spaces. The scenario is as follows: I already have a workfile open, and would like to read in this string and assign it to, say, variable "%list" in EView...
- Mon Sep 24, 2012 10:31 am
- Forum: Installation and Registration
- Topic: Mac version
- Replies: 1
- Views: 7495
Mac version
Hi,
If I remember correctly, the beta version of "EViews for Mac" supported programs. If I read the specifications correctly, the commercially-available student version doesn't (and a non-student version doesn't exist).
Any chance that Mac users will get a full version?
Philipp
If I remember correctly, the beta version of "EViews for Mac" supported programs. If I read the specifications correctly, the commercially-available student version doesn't (and a non-student version doesn't exist).
Any chance that Mac users will get a full version?
Philipp
- Wed May 02, 2012 11:33 am
- Forum: Programming
- Topic: Creating a folder
- Replies: 7
- Views: 9447
Re: Creating a folder
Yes,
I ran exactly that code. I can manually create a folder c:\test, I can do it from the Windows command prompt, but not using the shell command.
Strange. Not the end of the world, but strange.
Oh well,
Philipp
I ran exactly that code. I can manually create a folder c:\test, I can do it from the Windows command prompt, but not using the shell command.
Strange. Not the end of the world, but strange.
Oh well,
Philipp
- Wed May 02, 2012 5:04 am
- Forum: Programming
- Topic: Creating a folder
- Replies: 7
- Views: 9447
Re: Creating a folder
I did. It doesn't work either. :-(
- Tue May 01, 2012 2:16 pm
- Forum: Programming
- Topic: Creating a folder
- Replies: 7
- Views: 9447
Creating a folder
Hi, I would like to use the shell command to create a folder, but pass the name of the folder using a string. E.g something like this: logmode logmsg %test = "c:\Test" logmsg %test shell mkdir %test Alas, it does not work (" Unable to create process: The directory name is invalid in &...
- Tue Mar 13, 2012 9:08 am
- Forum: Data Manipulation
- Topic: Import mixed data
- Replies: 5
- Views: 5944
Re: Import mixed data
Thanks, Gareth. This works. One more question: I will need different parts of the file (different values for "indx_nm", so to speak), and I can loop through them. However, given how large the original file is, it take a really long time to load it every time the loop is executed. Is there ...
- Tue Mar 13, 2012 4:47 am
- Forum: Data Manipulation
- Topic: Import mixed data
- Replies: 5
- Views: 5944
Re: Import mixed data
Unfortunately - it doesn't seem to work. I uploaded a sample file. When I run the following code: wfcreate(wf=Test) q 2004 2012 import(resize) "Test.csv" @drop modeler fcst_month @freq q 2004q2 @smpl 2010q1 2012q4 if INDX_NM="FFTGTAVG" I get the following error: Error in Sample: ...
- Mon Mar 12, 2012 2:42 pm
- Forum: Data Manipulation
- Topic: Import mixed data
- Replies: 5
- Views: 5944
Import mixed data
Hi, I could use some help on importing a somewhat complex CSV file. The file is structured as follows: INDX_NM INDX_DESC SCE_NM PERIOD VALUE UST 3M US Treasury Bill (3M) TDA_U1 6/1/2004 1.088 UST 3M US Treasury Bill (3M) TDA_U1 9/1/2004 1.5037 UST 3M US Treasury Bill (3M) TDA_U1 12/1/2004 2.0338 UST...
- Wed Mar 07, 2012 6:45 am
- Forum: Data Manipulation
- Topic: "Fan charts" and processing of publication lags
- Replies: 1
- Views: 4298
"Fan charts" and processing of publication lags
Good morning, I'm wondering whether others have found simple solutions to the following two issues. First, has anyone figured out a simple way to generate fan charts in EViews (http://en.wikipedia.org/wiki/Fan_chart_%28time_series%29)? I didn't find anything in the forum. Second, economic data is re...
- Tue Mar 06, 2012 12:26 pm
- Forum: Data Manipulation
- Topic: Merge multiple graphs
- Replies: 4
- Views: 10843
Merge multiple graphs
Hi, Is there an easy way to merge multiple graphs in a loop? Suppose, I have graph1 graph2 graph3, and want to merge them in graph_merge. I could write: graph graph_merge.merge graph1 graph2 graph3 However, if I don't know in advance how many graphs I have, things get tricky. I would like to success...
- Wed Feb 15, 2012 12:21 pm
- Forum: Data Manipulation
- Topic: Graph "Mixed with lines"
- Replies: 1
- Views: 2841
Graph "Mixed with lines"
Hi,
I noticed that Eviews has a chart option "Mixed with lines" (can be found e.g. when making charts on a group). Is there a way I can call this type of chart in a program? It doesn't seem to be listed in the help function....
Thanks, Philipp
I noticed that Eviews has a chart option "Mixed with lines" (can be found e.g. when making charts on a group). Is there a way I can call this type of chart in a program? It doesn't seem to be listed in the help function....
Thanks, Philipp
- Wed Feb 01, 2012 2:47 pm
- Forum: Estimation
- Topic: Principal component analysis on a matrix
- Replies: 4
- Views: 4206
Re: Principal component analysis on a matrix
Gareth,
You made my day.
Philipp
PS I don't think it's in the manual -- if that's correct, it might be worth adding for the next iteration.
You made my day.
Philipp
PS I don't think it's in the manual -- if that's correct, it might be worth adding for the next iteration.
- Wed Feb 01, 2012 1:06 pm
- Forum: Estimation
- Topic: Principal component analysis on a matrix
- Replies: 4
- Views: 4206
Principal component analysis on a matrix
Hi, I'd like to use principal component analysis on a matrix and retrieve the scores. I can use matrixname.pcomp(eigval=v1, eigvec=m1) to calculate the eigenvalues and eigenvectors, but there doesn't seem to be a command to calculate the scores -- although when I use the dialog box, I can store them...
