Skip to content
Snippets Groups Projects
Commit 17dec97c authored by Johannes Pfeifer's avatar Johannes Pfeifer
Browse files

Use raw_data in forecast plots instead of prefiltered data

parent f074c67d
No related branches found
No related tags found
2 merge requests!1381PR for #1286,!1301Use raw_data in forecast plots instead of prefiltered data
...@@ -29,7 +29,7 @@ function oo_recursive_=dynare_estimation(var_list,dname) ...@@ -29,7 +29,7 @@ function oo_recursive_=dynare_estimation(var_list,dname)
% You should have received a copy of the GNU General Public License % You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>. % along with Dynare. If not, see <http://www.gnu.org/licenses/>.
global options_ oo_ M_ dataset_ global options_ oo_ M_ dataset_ dataset_info
oo_recursive_={}; oo_recursive_={};
...@@ -143,7 +143,7 @@ if nnobs > 1 && horizon > 0 ...@@ -143,7 +143,7 @@ if nnobs > 1 && horizon > 0
time_offset=min(3,gend-1); %for observables, plot 3 previous periods unless data is shorter time_offset=min(3,gend-1); %for observables, plot 3 previous periods unless data is shorter
k = time_offset+min(nobs(end)-nobs(1)+horizon, ... k = time_offset+min(nobs(end)-nobs(1)+horizon, ...
size(dataset_.data,1)-nobs(1)); size(dataset_.data,1)-nobs(1));
data2 = dataset_.data(end-k+1:end,:); data2 = dataset_info.rawdata(end-k+1:end,:);
[nbplt,nr,nc,lr,lc,nstar] = pltorg(nvar); [nbplt,nr,nc,lr,lc,nstar] = pltorg(nvar);
m = 1; m = 1;
plot_index=0; plot_index=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment