first I calculate the whole MH using the following command
- Code: Select all
estimation(order=1, datafile=data_orig,mode_compute=6,mh_replic=2000000, mh_nblocks=2, mh_drop=0.2, mh_jscale=6) c_obs i_obs n_obs ps_obs p_obs;
it works fine and it gives the mean, the mode, and all the info I need
, however, since I did not get the results that I wanted I tried changing the drop and the jump scale values, but using the MH draws that I already have by using the following command,
- Code: Select all
estimation(order=1, datafile=data_orig,mode_compute=6,mh_replic=0, mh_nblocks=2, mh_drop=0.4, mh_jscale=12, load_mh_file) c_obs i_obs n_obs ps_obs p_obs;
and I got the similar results that shows in http://www.dynare.org/phpBB3/viewtopic.php?f=1&t=4605
when I use mh_replic=0 in combination with load_mh_file I just get the new posterior mod, but not the posterior mean.
is there a way around this?
Best Mario