It is nice that you decided to open a forum for the users of your product. Since I am a frequent user of the program I've noticed some issues that I would like to post here. I hope that at least some of them could be implemented in the next patches of EViews (numbering doesn't mean importance):
1. INCLUDE function - EViews has a very nice feature to use parameters like {%something} but it doesn't work with all the functions. Such example is command INCLUDE, you cannot have something like:
Code: Select all
%path = "C:\.....\"
include {%path}NameOfTheBatch.prg3. table as xls - EViews should be able to save tables as xls files (even without formating). Personally, I need this very much in my work.
4. Dated data report table - This is very convenient thing in mouse land but I would like to see all options that it has there implemented in the command line as well.
5. order pages - It would be nice to have this feature.
6. Select - It doesn't work properly when selecting upwards files with keyboard (you can select only 2 objects).
7. Unicode - You could put cyrillic names in Graphs, but in tables cyrillic characteristics don't work. It is important for me because of reporting which should be done in my own language. I am not sure that it is something about unicode. If it is possible for graphs why it is not possible for tables?
8. SETLINES bug - When using command setlines(area) with argument +o or +r it adds another column in the table on the right side of the area specified in brackets.
9. stochastic (Model Procs) - It doesn't work with options for s (d, m, s, b, a). I get an error message: "Error in Sample: Illegal date A in "DO_ MODEL.SOLVE"" (as a result of code: model.stochastic(s=a)).
10. Stacked charts - First, I should mention that I asked Gareth about this issue. His answer was this:
Ok, from mathematical point of view this is right BUT if you have a tool you want it to do the job for you not the other way around. The main con of your approach is that you could have different graphs depending on the order of series (see the code below) and it becomes mess when you try to plot several series some of which with opposite singes of values. The main reason I want this graph to be done like in MS Excel is that I can easily see contributions of different components to something (which I my opinion is the main purpose of stacked charts). Please implement this type of chart in the future versions of your software and call it whatever you want if you think that "stack" is not the right name.A stacked bar chart is supposed to "stack" the data one above the other (hence the name). Unfortunately Excel does it differently (in our opinion incorrectly) from most other statistical packages. EViews does not offer a way to do it in Excel's style.
Code: Select all
close file
wfcreate(wf=file, page=Q) q 2008:1 2008:4
genr ser1 = 2
genr ser2 = -2
group gp1 ser1 ser2
group gp2 ser2 ser1
graph gr1.bar(s) gp1
graph gr2.bar(s) gp2
show gr1
show gr2