Skip to content
Snippets Groups Projects
Select Git revision
  • 59ffefd1ce817eb436e6be8fc035713f2c86ed19
  • master default protected
  • 6.x protected
  • julia protected
  • python-codegen
  • llvm-15
  • 5.x protected
  • 4.6 protected
  • uop
  • rework_pac
  • aux_vars_fix
  • julia-7.0.0
  • julia-6.4.0
  • julia-6.3.0
  • julia-6.2.0
15 results

Doxyfile

Blame
  • GetPosteriorParametersStatistics.m 16.93 KiB
    function oo_ = GetPosteriorParametersStatistics(estim_params_, M_, options_, bayestopt_, oo_, pnames)
    % This function prints and saves posterior estimates after the mcmc
    % (+updates of oo_ & TeX output). 
    % 
    % INPUTS 
    %   estim_params_    [structure] 
    %   M_               [structure]
    %   options_         [structure]
    %   bayestopt_       [structure]
    %   oo_              [structure]
    %   pnames           [char]        Array of char, names of the prior shapes available
    %  
    % OUTPUTS 
    %   oo_              [structure]  
    %
    % SPECIAL REQUIREMENTS
    %   None.
    
    % Copyright (C) 2006-2016 Dynare Team
    %
    % This file is part of Dynare.
    %
    % Dynare is free software: you can redistribute it and/or modify
    % it under the terms of the GNU General Public License as published by
    % the Free Software Foundation, either version 3 of the License, or
    % (at your option) any later version.
    %
    % Dynare is distributed in the hope that it will be useful,
    % but WITHOUT ANY WARRANTY; without even the implied warranty of
    % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    % GNU General Public License for more details.
    %
    % You should have received a copy of the GNU General Public License
    % along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
    
    %if ~options_.mh_replic && options_.load_mh_file
    %   load([M_.fname '_results.mat'],'oo_'); 
    %end
    
    TeX     = options_.TeX;
    nblck   = options_.mh_nblck;
    nvx     = estim_params_.nvx;
    nvn     = estim_params_.nvn;
    ncx     = estim_params_.ncx;
    ncn     = estim_params_.ncn;
    np      = estim_params_.np ;
    nx      = nvx+nvn+ncx+ncn+np;
    
    MetropolisFolder = CheckPath('metropolis',M_.dname);
    OutputFolder = CheckPath('Output',M_.dname);
    FileName = M_.fname;  
    
    load_last_mh_history_file(MetropolisFolder,FileName);
    
    FirstMhFile = record.KeepedDraws.FirstMhFile;
    FirstLine = record.KeepedDraws.FirstLine;
    TotalNumberOfMhFiles = sum(record.MhDraws(:,2));
    TotalNumberOfMhDraws = sum(record.MhDraws(:,1));
    FirstMhFile = record.KeepedDraws.FirstMhFile;
    NumberOfDraws = TotalNumberOfMhDraws-floor(options_.mh_drop*TotalNumberOfMhDraws);
    clear record;
    
    header_width = row_header_width(M_,estim_params_,bayestopt_);
    hpd_interval=[num2str(options_.mh_conf_sig*100), '% HPD interval'];
    tit2 = sprintf('%-*s %12s %12s %23s %8s %12s\n',header_width,' ','prior mean','post. mean',hpd_interval,'prior','pstdev');
    pformat =      '%-*s %12.3f % 12.4f %11.4f %11.4f %7s %12.4f';
    
    skipline(2)
    disp('ESTIMATION RESULTS')
    skipline()
    
    try
        disp(sprintf('Log data density is %f.',oo_.MarginalDensity.ModifiedHarmonicMean))
    catch
        [marginal,oo_] = marginal_density(M_, options_, estim_params_, oo_, bayestopt_);
        disp(sprintf('Log data density is %f.',oo_.MarginalDensity.ModifiedHarmonicMean))
    end
    num_draws=NumberOfDraws*options_.mh_nblck;
    hpd_draws = round((1-options_.mh_conf_sig)*num_draws);
    if hpd_draws<2
        fprintf('posterior_moments: There are not enough draws computes to compute HPD Intervals. Skipping their computation.\n')
    end
    if num_draws<9
        fprintf('posterior_moments: There are not enough draws computes to compute deciles. Skipping their computation.\n')
    end
    if np
        type = 'parameters';
        if TeX
            fid = TeXBegin(OutputFolder,M_.fname,1,type);
        end
        skipline()
        disp(type)
        disp(tit2)
        ip = nvx+nvn+ncx+ncn+1;
        for i=1:np
            if options_.mh_replic
                Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                [post_mean, post_median, post_var, hpd_interval, post_deciles, ...
                 density] = posterior_moments(Draws,1,options_.mh_conf_sig);
                name = bayestopt_.name{ip};
                oo_ = Filloo(oo_,name,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);
            else
                try
                    name = bayestopt_.name{ip};
                    [post_mean,hpd_interval,post_var] = Extractoo(oo_,name,type);
                catch
                    Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                    [post_mean, post_median, post_var, hpd_interval, post_deciles, ...
                     density] = posterior_moments(Draws,1,options_.mh_conf_sig);
                    name = bayestopt_.name{ip};
                    oo_ = Filloo(oo_,name,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);                
                end
            end
            disp(sprintf(pformat,header_width,name,bayestopt_.p1(ip),...
                         post_mean, ...
                         hpd_interval, ...
                         pnames(bayestopt_.pshape(ip)+1,:), ...
                         bayestopt_.p2(ip)));    
            if TeX
                k = estim_params_.param_vals(i,1);
                name = deblank(M_.param_names_tex(k,:));
                TeXCore(fid,name,deblank(pnames(bayestopt_.pshape(ip)+1,:)),bayestopt_.p1(ip),...
                        bayestopt_.p2(ip),post_mean,sqrt(post_var),hpd_interval);
            end
            ip = ip+1;
        end
        if TeX
            TeXEnd(fid,1,type);
        end
    end
    if nvx
        type = 'shocks_std';
        if TeX
            fid = TeXBegin(OutputFolder,FileName,2,'standard deviation of structural shocks');
        end
        ip = 1;
        skipline()
        disp('standard deviation of shocks')
        disp(tit2)
        for i=1:nvx
            if options_.mh_replic
                Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                    posterior_moments(Draws,1,options_.mh_conf_sig);
                k = estim_params_.var_exo(i,1);
                name = deblank(M_.exo_names(k,:));
                oo_ = Filloo(oo_,name,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);
                M_.Sigma_e(k,k) = post_mean*post_mean;
            else
                try
                    k = estim_params_.var_exo(i,1);
                    name = deblank(M_.exo_names(k,:));
                    [post_mean,hpd_interval,post_var] = Extractoo(oo_,name,type);
                catch
                    Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                    [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                        posterior_moments(Draws,1,options_.mh_conf_sig);
                    k = estim_params_.var_exo(i,1);
                    name = deblank(M_.exo_names(k,:));
                    oo_ = Filloo(oo_,name,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);
                    M_.Sigma_e(k,k) = post_mean*post_mean;
                end
            end
            disp(sprintf(pformat,header_width,name,bayestopt_.p1(ip),post_mean,hpd_interval,...
                         pnames(bayestopt_.pshape(ip)+1,:),bayestopt_.p2(ip)));
            if TeX,
                name = deblank(M_.exo_names_tex(k,:));
                TeXCore(fid,name,deblank(pnames(bayestopt_.pshape(ip)+1,:)),bayestopt_.p1(ip),...
                        bayestopt_.p2(ip),post_mean,sqrt(post_var),hpd_interval);
            end
            ip = ip+1;
        end
        if TeX
            TeXEnd(fid,2,'standard deviation of structural shocks');        
        end
    end
    if nvn
        type = 'measurement_errors_std';
        if TeX
            fid = TeXBegin(OutputFolder,FileName,3,'standard deviation of measurement errors');
        end
        skipline()
        disp('standard deviation of measurement errors')
        disp(tit2)
        ip = nvx+1;
        for i=1:nvn
            if options_.mh_replic
                Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                    posterior_moments(Draws,1,options_.mh_conf_sig);
                name = options_.varobs{estim_params_.nvn_observable_correspondence(i,1)};
                oo_ = Filloo(oo_,name,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);
            else
                try
                    name = options_.varobs{estim_params_.nvn_observable_correspondence(i,1)};
                    [post_mean,hpd_interval,post_var] = Extractoo(oo_,name,type);
                catch
                    Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                    [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                        posterior_moments(Draws,1,options_.mh_conf_sig);
                    name = options_.varobs{estim_params_.nvn_observable_correspondence(i,1)};
                    oo_ = Filloo(oo_,name,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);
                end
            end
            disp(sprintf(pformat,header_width,name,bayestopt_.p1(ip),post_mean,hpd_interval, ...
                         pnames(bayestopt_.pshape(ip)+1,:),bayestopt_.p2(ip)));
            if TeX
                k = estim_params_.var_endo(i,1);
                name = deblank(M_.endo_names_tex(k,:));
                TeXCore(fid,name,deblank(pnames(bayestopt_.pshape(ip)+1,:)),bayestopt_.p1(ip),...
                        bayestopt_.p2(ip),post_mean,sqrt(post_var),hpd_interval);
            end
            ip = ip+1;
        end
        if TeX
            TeXEnd(fid,3,'standard deviation of measurement errors');        
        end
    end
    if ncx
        type = 'shocks_corr';
        if TeX
            fid = TeXBegin(OutputFolder,FileName,4,'correlation of structural shocks');
        end
        skipline()
        disp('correlation of shocks')
        disp(tit2)
        ip = nvx+nvn+1;
        for i=1:ncx
            if options_.mh_replic
                Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                    posterior_moments(Draws,1,options_.mh_conf_sig);
                k1 = estim_params_.corrx(i,1);
                k2 = estim_params_.corrx(i,2);
                name = [deblank(M_.exo_names(k1,:)) ',' deblank(M_.exo_names(k2,:))];
                NAME = [deblank(M_.exo_names(k1,:)) '_' deblank(M_.exo_names(k2,:))];
                oo_ = Filloo(oo_,NAME,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);
                M_.Sigma_e(k1,k2) = post_mean*sqrt(M_.Sigma_e(k1,k1)*M_.Sigma_e(k2,k2));
                M_.Sigma_e(k2,k1) = M_.Sigma_e(k1,k2);
            else
                try
                    k1 = estim_params_.corrx(i,1);
                    k2 = estim_params_.corrx(i,2);
                    name = [deblank(M_.exo_names(k1,:)) ',' deblank(M_.exo_names(k2,:))];
                    NAME = [deblank(M_.exo_names(k1,:)) '_' deblank(M_.exo_names(k2,:))];
                    [post_mean,hpd_interval,post_var] = Extractoo(oo_,NAME,type);
                catch
                    Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                    [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                        posterior_moments(Draws,1,options_.mh_conf_sig);
                    k1 = estim_params_.corrx(i,1);
                    k2 = estim_params_.corrx(i,2);
                    name = [deblank(M_.exo_names(k1,:)) ',' deblank(M_.exo_names(k2,:))];
                    NAME = [deblank(M_.exo_names(k1,:)) '_' deblank(M_.exo_names(k2,:))];
                    oo_ = Filloo(oo_,NAME,type,post_mean,hpd_interval,post_median,post_var,post_deciles,density);
                    M_.Sigma_e(k1,k2) = post_mean*sqrt(M_.Sigma_e(k1,k1)*M_.Sigma_e(k2,k2));
                    M_.Sigma_e(k2,k1) = M_.Sigma_e(k1,k2);
                end
            end
            disp(sprintf(pformat, header_width,name,bayestopt_.p1(ip),post_mean,hpd_interval, ...
                         pnames(bayestopt_.pshape(ip)+1,:),bayestopt_.p2(ip)));
            if TeX
                name = ['(',deblank(M_.exo_names_tex(k1,:)) ',' deblank(M_.exo_names_tex(k2,:)),')'];
                TeXCore(fid,name,deblank(pnames(bayestopt_.pshape(ip)+1,:)),bayestopt_.p1(ip),...
                        bayestopt_.p2(ip),post_mean,sqrt(post_var),hpd_interval);
            end
            ip = ip+1;
        end
        if TeX
            TeXEnd(fid,4,'correlation of structural shocks');
        end
    end
    if ncn
        type = 'measurement_errors_corr';
        if TeX
            fid = TeXBegin(OutputFolder,FileName,5,'correlation of measurement errors');
        end
        skipline()
        disp('correlation of measurement errors')
        disp(tit2)
        ip = nvx+nvn+ncx+1;
        for i=1:ncn
            if options_.mh_replic
                Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                    posterior_moments(Draws,1,options_.mh_conf_sig);
                k1 = estim_params_.corrn(i,1);
                k2 = estim_params_.corrn(i,2);
                name = [deblank(M_.endo_names(k1,:)) ',' deblank(M_.endo_names(k2,:))];
                NAME = [deblank(M_.endo_names(k1,:)) '_' deblank(M_.endo_names(k2,:))];
                oo_ = Filloo(oo_,NAME,type,post_mean,hpd_interval,...
                             post_median,post_var,post_deciles,density);
            else
                try
                    k1 = estim_params_.corrn(i,1);
                    k2 = estim_params_.corrn(i,2);
                    name = [deblank(M_.endo_names(k1,:)) ',' deblank(M_.endo_names(k2,:))];
                    NAME = [deblank(M_.endo_names(k1,:)) '_' deblank(M_.endo_names(k2,:))];
                    [post_mean,hpd_interval,post_var] = Extractoo(oo_,NAME,type);
                catch
                    Draws = GetAllPosteriorDraws(ip,FirstMhFile,FirstLine,TotalNumberOfMhFiles,NumberOfDraws);
                    [post_mean, post_median, post_var, hpd_interval, post_deciles, density] = ...
                        posterior_moments(Draws,1,options_.mh_conf_sig);
                    k1 = estim_params_.corrn(i,1);
                    k2 = estim_params_.corrn(i,2);
                    name = [deblank(M_.endo_names(k1,:)) ',' deblank(M_.endo_names(k2,:))];
                    NAME = [deblank(M_.endo_names(k1,:)) '_' deblank(M_.endo_names(k2,:))];
                    oo_ = Filloo(oo_,NAME,type,post_mean,hpd_interval,...
                                 post_median,post_var,post_deciles,density);
                end
            end
            disp(sprintf(pformat, header_width,name,bayestopt_.p1(ip),post_mean,hpd_interval, ...
                         pnames(bayestopt_.pshape(ip)+1,:),bayestopt_.p2(ip)));
            if TeX,
                name = ['(',deblank(M_.endo_names_tex(k1,:)) ',' deblank(M_.endo_names_tex(k2,:)),')'];
                TeXCore(fid,name,deblank(pnames(bayestopt_.pshape(ip)+1,:)),bayestopt_.p1(ip),...
                        bayestopt_.p2(ip),post_mean,sqrt(post_var),hpd_interval);            
            end
            ip = ip+1;
        end
        if TeX
            TeXEnd(fid,5,'correlation of measurement errors');        
        end
    end
    
    
    %
    %% subfunctions:
    %
    function fid = TeXBegin(directory,fname,fnum,title)
    TeXfile = [directory '/' fname '_Posterior_Mean_' int2str(fnum) '.tex'];
    fidTeX = fopen(TeXfile,'w');
    fprintf(fidTeX,'%% TeX-table generated by Dynare.\n');
    fprintf(fidTeX,['%% RESULTS FROM METROPOLIS HASTINGS (' title ')\n']);
    fprintf(fidTeX,['%% ' datestr(now,0)]);
    fprintf(fidTeX,' \n');
    fprintf(fidTeX,' \n');
    fprintf(fidTeX,'\\begin{center}\n');
    fprintf(fidTeX,'\\begin{longtable}{llcccccc} \n');
    fprintf(fidTeX,['\\caption{Results from Metropolis-Hastings (' title ')}\n ']);
    fprintf(fidTeX,['\\label{Table:MHPosterior:' int2str(fnum)  '}\\\\\n']);
    fprintf(fidTeX,'\\toprule \n');
    fprintf(fidTeX,'  & \\multicolumn{3}{c}{Prior}  &  \\multicolumn{4}{c}{Posterior} \\\\\n');
    fprintf(fidTeX,'  \\cmidrule(r{.75em}){2-4} \\cmidrule(r{.75em}){5-8}\n');
    fprintf(fidTeX,'  & Dist. & Mean  & Stdev. & Mean & Stdev. & HPD inf & HPD sup\\\\\n');
    fprintf(fidTeX,'\\midrule \\endfirsthead \n');
    fprintf(fidTeX,['\\caption{(continued)}\\\\']);
    fprintf(fidTeX,'\\toprule \n');
    fprintf(fidTeX,'  & \\multicolumn{3}{c}{Prior}  &  \\multicolumn{4}{c}{Posterior} \\\\\n');
    fprintf(fidTeX,'  \\cmidrule(r{.75em}){2-4} \\cmidrule(r{.75em}){5-8}\n');
    fprintf(fidTeX,'  & Dist. & Mean  & Stdev. & Mean & Stdev. & HPD inf & HPD sup\\\\\n');
    fprintf(fidTeX,'\\midrule \\endhead \n');
    
    fprintf(fidTeX,'\\bottomrule \\multicolumn{8}{r}{(Continued on next page)} \\endfoot \n');
    fprintf(fidTeX,'\\bottomrule \\endlastfoot \n');
    
    
    fid = fidTeX;
    
    
    function TeXCore(fid,name,shape,priormean,priorstd,postmean,poststd,hpd)
    fprintf(fid,['$%s$ & %s & %7.3f & %6.4f & %7.3f& %6.4f & %7.4f & %7.4f \\\\ \n'],... 
            name,...
            shape,...
            priormean,...
            priorstd,...
            postmean,...
            poststd,...
            hpd(1),...
            hpd(2));
    
    
    function TeXEnd(fid,fnum,title)
    fprintf(fid,'\\end{longtable}\n ');    
    fprintf(fid,'\\end{center}\n');
    fprintf(fid,'%% End of TeX file.\n');
    fclose(fid);
    
    
    function oo = Filloo(oo,name,type,postmean,hpdinterval,postmedian,postvar,postdecile,density)
    oo.posterior_mean.(type).(name) = postmean;
    oo.posterior_hpdinf.(type).(name) = hpdinterval(1);
    oo.posterior_hpdsup.(type).(name) = hpdinterval(2);
    oo.posterior_median.(type).(name) = postmedian;
    oo.posterior_variance.(type).(name) = postvar;
    oo.posterior_std.(type).(name) = sqrt(postvar);
    oo.posterior_deciles.(type).(name) = postdecile;
    oo.posterior_density.(type).(name) = density;
    
    function [post_mean,hpd_interval,post_var] = Extractoo(oo,name,type)
    hpd_interval = zeros(2,1);
    post_mean = oo.posterior_mean.(type).(name);
    hpd_interval(1) = oo.posterior_hpdinf.(type).(name);
    hpd_interval(2) = oo.posterior_hpdsup.(type).(name);
    post_var = oo.posterior_variance.(type).(name);