dynare/matlab/ols/pooled_ols.m

185 lines
6.7 KiB
Matlab
Raw Normal View History

function varargout = pooled_ols(ds, param_common, param_regex, overlapping_dates, eqtags)
2018-01-17 12:50:22 +01:00
% function pooled_ols(ds, param_common, param_regex, overlapping_dates, eqtags)
2017-10-23 15:55:01 +02:00
% Run Pooled OLS
% Apply parameter values found to corresponding parameter values in the
% other blocks of the model
%
% INPUTS
2017-11-15 12:36:12 +01:00
% ds [dseries] data to use in estimation
% param_common [cellstr] List of values to insert into param_regex,
% e.g. country codes {'FR', 'DE', 'IT'}
% param_regex [cellstr] Where '*' should be replaced by the first
% value in param_common
% overlapping_dates [bool] if the dates across the equations should
% overlap
% eqtags [cellstr] names of equation tags to estimate. If empty,
% estimate all equations
2017-10-23 15:55:01 +02:00
%
% OUTPUTS
% none
%
% SPECIAL REQUIREMENTS
% dynare must be run with the option: json=compute
2017-10-23 15:55:01 +02:00
% Copyright (C) 2017-2018 Dynare Team
2017-10-23 15:55:01 +02:00
%
% 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/>.
global M_ oo_
%% Check input arguments
2017-11-02 12:34:11 +01:00
assert(~isempty(ds) && isdseries(ds), 'The first argument must be a dseries');
2017-11-15 12:36:12 +01:00
if isempty(param_common) && isempty(param_regex)
disp('Performing OLS instead of Pooled OLS...')
if nargin < 6
dyn_ols(ds);
else
dyn_ols(ds, {}, eqtags);
end
return;
end
2017-11-02 12:34:11 +01:00
assert(~isempty(param_common) && iscellstr(param_common), 'The second argument must be a cellstr');
assert(~isempty(param_regex) && iscellstr(param_regex), 'The third argument must be a cellstr');
2017-10-27 12:20:16 +02:00
2017-11-15 12:36:12 +01:00
if nargin < 4
overlapping_dates = false;
else
assert(islogical(overlapping_dates) && length(overlapping_dates) == 1, 'The fourth argument must be a bool');
end
%% Read JSON
2019-01-14 15:02:32 +01:00
jsonfile = [M_.fname filesep() 'model' filesep() 'json' filesep() 'modfile-original.json'];
2017-10-23 15:55:01 +02:00
if exist(jsonfile, 'file') ~= 2
error('Could not find %s! Please use the json=compute option (See the Dynare invocation section in the reference manual).', jsonfile);
2017-10-23 15:55:01 +02:00
end
jsonmodel = loadjson(jsonfile);
jsonmodel = jsonmodel.model;
2018-01-17 12:50:22 +01:00
if nargin < 5
2018-01-19 12:51:51 +01:00
eqtags ={};
else
2018-01-19 12:51:51 +01:00
jsonmodel = getEquationsByTags(jsonmodel, 'name', eqtags);
end
2017-10-23 15:55:01 +02:00
%% Replace parameter names in equations
country_name = param_common{1};
regexcountries = ['(' strjoin(param_common(2:end),'|') ')'];
param_regex_idx = false(length(param_regex), 1);
2017-10-23 15:55:01 +02:00
for i = 1:length(param_regex)
splitp = strsplit(param_regex{i}, '*');
assert(length(splitp) >= 2);
2018-01-19 12:51:51 +01:00
for j = 1:length(jsonmodel)
rhstmp = regexprep(jsonmodel{j}.rhs, ...
strjoin(splitp, regexcountries), ...
strjoin(splitp, country_name));
if length(intersect(jsonmodel{j}.rhs, rhstmp)) ~= length(jsonmodel{j}.rhs)
jsonmodel{j}.rhs = rhstmp;
param_regex_idx(i) = true;
end
end
2017-10-23 15:55:01 +02:00
end
param_regex = param_regex(param_regex_idx);
2017-10-23 15:55:01 +02:00
2018-01-17 12:50:22 +01:00
st = dbstack(1);
save_structure_name = 'pooled_ols';
if strcmp(st(1).name, 'pooled_fgls')
varargout{1} = param_regex;
2018-01-17 12:50:22 +01:00
save_structure_name = 'pooled_fgls';
end
2017-10-23 15:55:01 +02:00
%% Find parameters and variable names in every equation & Setup estimation matrices
[X, Y, startdates, enddates, startidxs, residnames, pbeta, vars, surpidxs, surconstrainedparams] = ...
2018-01-19 12:51:51 +01:00
pooled_sur_common(ds, jsonmodel);
2017-10-23 15:55:01 +02:00
2017-11-15 12:36:12 +01:00
if overlapping_dates
maxfp = max([startdates{:}]);
minlp = min([enddates{:}]);
nobs = minlp - maxfp;
2018-01-19 12:51:51 +01:00
newY = zeros(nobs*length(jsonmodel), 1);
newX = zeros(nobs*length(jsonmodel), columns(X));
2017-11-15 12:36:12 +01:00
newstartidxs = zeros(size(startidxs));
newstartidxs(1) = 1;
2018-01-19 12:51:51 +01:00
for i = 1:length(jsonmodel)
if i == length(jsonmodel)
2017-11-15 12:36:12 +01:00
yds = dseries(Y(startidxs(i):end), startdates{i});
xds = dseries(X(startidxs(i):end, :), startdates{i});
else
yds = dseries(Y(startidxs(i):startidxs(i+1)-1), startdates{i});
xds = dseries(X(startidxs(i):startidxs(i+1)-1, :), startdates{i});
end
newY(newstartidxs(i):newstartidxs(i) + nobs, 1) = yds(maxfp:minlp).data;
newX(newstartidxs(i):newstartidxs(i) + nobs, :) = xds(maxfp:minlp, :).data;
2018-01-19 12:51:51 +01:00
if i ~= length(jsonmodel)
2017-11-15 12:36:12 +01:00
newstartidxs(i+1) = newstartidxs(i) + nobs + 1;
end
end
Y = newY;
X = newX;
startidxs = newstartidxs;
oo_.(save_structure_name).sample_range = maxfp:minlp;
oo_.(save_structure_name).residnames = residnames;
oo_.(save_structure_name).Y = Y;
oo_.(save_structure_name).X = X;
oo_.(save_structure_name).pbeta = pbeta;
oo_.(save_structure_name).country_name = country_name;
end
2017-10-23 15:55:01 +02:00
%% Estimation
% Estimated Parameters
[q, r] = qr(X, 0);
2017-11-15 12:36:12 +01:00
oo_.(save_structure_name).beta = r\(q'*Y);
2017-10-23 15:55:01 +02:00
if strcmp(st(1).name, 'pooled_fgls')
return
end
2017-10-23 15:55:01 +02:00
% Assign parameter values back to parameters using param_regex & param_common
regexcountries = ['(' strjoin(param_common(1:end),'|') ')'];
assigned_idxs = false(size(pbeta));
for i = 1:length(param_regex)
beta_idx = strcmp(pbeta, strrep(param_regex{i}, '*', country_name));
assigned_idxs = assigned_idxs | beta_idx;
2017-11-15 12:36:12 +01:00
value = oo_.(save_structure_name).beta(beta_idx);
2018-01-19 12:51:51 +01:00
if isempty(eqtags)
assert(~isempty(value));
end
if ~isempty(value)
M_.params(~cellfun(@isempty, regexp(M_.param_names, ...
strrep(param_regex{i}, '*', regexcountries)))) = value;
end
2017-10-23 15:55:01 +02:00
end
idxs = find(assigned_idxs == 0);
2017-11-15 12:36:12 +01:00
values = oo_.(save_structure_name).beta(idxs);
2017-10-23 15:55:01 +02:00
names = pbeta(idxs);
assert(length(values) == length(names));
for i = 1:length(idxs)
M_.params(strcmp(M_.param_names, names{i})) = values(i);
2017-10-23 15:55:01 +02:00
end
2017-11-07 14:58:11 +01:00
2017-11-15 12:36:12 +01:00
residuals = Y - X * oo_.(save_structure_name).beta;
2018-01-19 12:51:51 +01:00
for i = 1:length(jsonmodel)
if i == length(jsonmodel)
2017-12-11 14:35:55 +01:00
oo_.(save_structure_name).resid.(residnames{i}{:}) = residuals(startidxs(i):end);
2017-11-07 14:58:11 +01:00
else
2017-12-11 14:35:55 +01:00
oo_.(save_structure_name).resid.(residnames{i}{:}) = residuals(startidxs(i):startidxs(i+1)-1);
2017-11-07 14:58:11 +01:00
end
2017-12-11 14:35:55 +01:00
oo_.(save_structure_name).varcovar.(['eq' num2str(i)]) = oo_.(save_structure_name).resid.(residnames{i}{:})*oo_.(save_structure_name).resid.(residnames{i}{:})';
idx = find(strcmp(residnames{i}{:}, M_.exo_names));
2017-12-11 14:35:55 +01:00
M_.Sigma_e(idx, idx) = var(oo_.(save_structure_name).resid.(residnames{i}{:}));
2017-11-07 14:58:11 +01:00
end
2017-10-23 15:55:01 +02:00
end