Is there a easy way to copy tables between different workfiles, that are both open?
The code is working for series (e.g.gdp) but unfortunately not for tables (tab). Any suggestions?
EViews allows for different types of mixed frequency regression, but what lags should be included for higher frequency. If we aim to forecast GDP for a particular quarter (Q1-2022), and data for a specific monthly indicator is only available for February 2021, we have to add a particular lag. For Mi...
This was my test version - but if I would add a particular row number (not step 2) saved in an additional table (tab_row) the procedure did not work. !j=14 for !i=1 to 5 scalar row =@val(tab_row(!i)) !row =row for !i=14 to 100 step+2 %dest="A"+@str(!j) %source_a="A"+@str(!row) %s...
Is there a way to loop over a particular number of rows in tabplace, instead of providing the numbers manually. Instead of tabplace (tab_new, tab_old, "A14","A14","N14") tabplace (tab_new, tab_old, "A15","A16","N16") Something like !j=14 fo...
I now solved the issue with a loop, but was wondering whether there is a more suitable solution: 'flexible training period" genr mse_fix=NA genr mse_all=NA for !ii=0 to 31 smpl 2011q1+!ii 2011q1+!ii %train_fix="2011q1+"+@str(!ii)+"-8 2011q1+"+@str(!ii)+"-1" ''' fix...
My forecasts are recursively estimated. Therefore, I think it is reasonable to adjust the training sample for forecast averaging. Is there an easy command to do this: for %weight mse ranks smpl 2013.1 2018.1 GDP.forcavg(name=test_{%weight}, wgttype={%weight},trainsmpl="2010Q1 2012Q4") GDP_...
I have a nice stacked bar chart (gr_contributions) showing contribution of a,b,c in each year for country X. Is it possible to show for each year also a stacked bar chart showing d, e,f for country Y for a particular year next to the corresponding bar of country X? group X a b c graph gr_contributio...
I would like to make a chart including two (or more) series, e.g. line chart. In the workfile data is available for the whole sample for all series but I would like to show different samples, e.g. x only from 2005-2010 and y from 2010-2015. Of course I can generate a new series containing only the d...
Dear all, we used version 9.5 and version 8.1 to perform e.g. equation eq_1.ls(optmethod=legacy, arma=cls) hours c ma(1) ma(2) ma(3) ar(1) ar(2) @trend that gives us a least-square estimation (without the sigma-parameter). Both version provide the same results, Now one of my colleagues has version 9...
The forecast combination command(s) works well, if all forecast series to be combined have a value, if there is an NA for forecast, no combined forecast can be calculated for the remaining series. Since I have used the group "gr_f" element to combine the forecasts it seems that I have to d...
Is there an EViews command that can be used to extract/save the elements of the lower part in the MIDAS estimations output directly?
coefficient, distribution shape,...
or is it necessary to freeze the output as table and extract the values manually?
Hi there, I would like to plot two histograms for two series ff1 ff2 in one graph - no problem. But it didn't find a way (in EViews 9) to deal with the fact that you cannot see the 2nd histogram bins if they are smaller then the first one, and vice versa. group ff ff1 ff2 freeze(graph) ff.distplot(s...
Thanks for prompt reply and implementation, series.fcasteval(evalsmpl="2004 2014", testname=m_enc, statname=vv) aa bb cc in matrix m_enc the results for the forecast encompassing test (F-stat, pval) are saved. but in svector vv only the name of the first variable is given (maybe this shoul...
Using EViews9, we can easily conduct forecast evaluation and encompassing tests :D series.fcasteval(evalsmpl="2004 2014") aa bb cc Is there a way to directly access the results that are shown in a spool (which is not save automatically) ? For instance to extract the values of the p-statist...