Skip to content

Commit

Permalink
Update readme + fix error in "create_table.m"
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelpm committed Dec 3, 2020
1 parent 7430b26 commit fd54d87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Tested in: Matlab R2020a on Windows 10 PC (64-bit) and Matlab R2019a on Macbook

**[simulations](simulations):** Simulation studies
- [run_sim_ar1.m](simulations/run_sim_ar1.m): AR(1) study
- [run_sim_var.m](simulations/run_sim_var.m): VAR(p) study
- [create_figs.m](simulations/create_figs.m): create figures of AR(1) and VAR(p) results
- [create_table.m](simulations/create_table.m): create table of AR(1) results
- [run_sim_var.m](simulations/run_sim_var.m): bivariate VAR study
- [run_sim_var_calib.m](simulations/run_sim_var_calib.m): empirically calibrated VAR study
- [create_figs.m](simulations/create_figs.m): create figures of AR(1) and bivariate VAR results
- [create_table.m](simulations/create_table.m): create table of AR(1) and bivariate VAR results
- [create_fig_var_calib.m](simulations/create_fig_var_calib.m): create figure of empirically calibrated VAR results
2 changes: 1 addition & 1 deletion simulations/create_table.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
%% Settings

% DGP type
dgp_type = 'iid'; % Either 'iid', 'arch', or 'homosk';
dgp_type = 'ar1_iid'; % Either 'ar1_iid', 'ar1_arch', 'ar1_homosk', or 'var_pX' (where X is integer)

% File names
load_filename = fullfile('results', strcat('sim_', dgp_type, '.mat')); % Load results from this file
Expand Down

0 comments on commit fd54d87

Please sign in to comment.