Merge pull request #1301 from JohannesPfeifer/recursive_plot

Use raw_data in forecast plots instead of prefiltered data
time-shift
Stéphane Adjemian 2016-10-10 09:44:46 +02:00 committed by GitHub
commit 05a906fa8b
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ function oo_recursive_=dynare_estimation(var_list,dname)
% You should have received a copy of the GNU General Public License
% 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_={};
@ -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
k = time_offset+min(nobs(end)-nobs(1)+horizon, ...
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);
m = 1;
plot_index=0;