I am trying to plot my "simul" IRFs using subplot. Everything is fine, except that my simulation goes up to period 100 and the periods displayed on the x-axes all go up to 120 periods, leaving a part of the plot blank.
- Code: Select all
shocks;
var eps_w; periods 1:9; values 0;
end;
simul(periods=100);
subplot(3,3,1);
plot(x)
title('X');
subplot(3,3,2);
plot(infl)
title('Inflation');
subplot(3,3,3);
plot(l)
title('Employment');
subplot(3,3,4);
plot(c)
title('C');
subplot(3,3,5);
plot(y)
title('Y');
subplot(3,3,6);
plot(w)
title('w');
subplot(3,3,7);
plot(r)
title('r');
subplot(3,3,8);
plot(tauw)
title('Labour Tax');
Would you know how to fix this simple issue?
Best,
Fabio