📄 varf.m
字号:
function ylevf = varf(y,nlag,nfor,begf,x,transf);% PURPOSE: estimates a vector autoregression of order n% and produces f-step-ahead forecasts%-------------------------------------------------------------% USAGE:yfor = varf(y,nlag,nfor,begf,x,transf)% where: y = an (nobs * neqs) matrix of y-vectors in levels% nlag = the lag length% nfor = the forecast horizon% begf = the beginning date of the forecast% (defaults to length(x) + 1)% x = an optional vector or matrix of deterministic% variables (not affected by data transformation)% transf = 0, no data transformation% = 1, 1st differences used to estimate the model% = freq, seasonal differences used to estimate% = cal-structure growth rates used to estimate% e.g., cal(1982,1,12) [see cal() function] %-------------------------------------------------------------% NOTE: constant term included automatically%-------------------------------------------------------------% RETURNS: % yfor = an nfor x neqs matrix of level forecasts for each equation%-------------------------------------------------------------% SEE ALSO: var, plt_var, prt_var%-------------------------------------------------------------% written by:% James P. LeSage, Dept of Economics% University of Toledo% 2801 W. Bancroft St,% Toledo, OH 43606% jpl@jpl.econ.utoledo.eduif nargin == 6 % user wants us to transform the data[nobs2 nx] = size(x); if isstruct(transf) % a growth rates transform tform = 2; freq = transf.freq; elseif transf == 0 % no transform tform = 0; elseif transf == 1 % 1st difference transform tform = 1; elseif (transf == 1) | (transf == 4) | (transf == 12) tform = 3; % seasonal differences transform freq = transf; end;elseif nargin == 5[nobs2 nx] = size(x);tform = 0;elseif nargin == 4nx = 0;tform = 0;elseerror('Wrong # of arguments to varf');end;% flag an error where x-variables exist but not enough forecast values% are supplied for these variablesif nx > 0 if nobs2 < begf-1+nfor error('varf: not enough observations in x to forecast'); end;end;[nobs neqs] = size(y);% adjust nobs to feed the lagsnmin = min(nobs,begf-1);% adjust nvar for constant termk = neqs*nlag+nx+1;switch tformcase 1 % 1st differences transform% transform datady = y - mlag(y,1);% generate lagged rhs matrixxlag = mlag(dy,nlag);% constant termiota = ones(nobs,1);% truncate variables to feed lags and 1st diff and end at begf-1iota = trimr(iota,nlag+1,nobs-begf+1);dys = trimr(dy,nlag+1,nobs-begf+1);xlag = trimr(xlag,nlag+1,nobs-begf+1);% add x-matrix and constant to x-matrixif nx > 0xmat = [xlag x(nlag+2:nmin,:) iota];elsexmat = [xlag iota];end;% end of 1st difference transformation casecase 2 % growth rates transformation% transform datady = growthr(y,freq);% generate lagged rhs matrixxlag = mlag(dy,nlag);% constant termiota = ones(nobs,1);% truncate variables to feed lags and freq diff's and end at begf-1iota = trimr(iota,nlag+freq,nobs-begf+1);dys = trimr(dy,nlag+freq,nobs-begf+1);xlag = trimr(xlag,nlag+freq,nobs-begf+1);% add x-matrix and constant to x-matrixif nx > 0xmat = [xlag x(nlag+freq+1:nmin,:) iota];elsexmat = [xlag iota];end;% end of growth-rates transform casecase 3 % seasonal differences transform% transform datady = y - lag(y,freq);% generate lagged rhs matrixxlag = mlag(dy,nlag);% constant termiota = ones(nobs,1);% truncate variables to feed lags and freq diff's and end at begf-1iota = trimr(iota,nlag+freq,nobs-begf+1);dys = trimr(dy,nlag+freq,nobs-begf+1);xlag = trimr(xlag,nlag+freq,nobs-begf+1);% add x-matrix and constant to x-matrixif nx > 0xmat = [xlag x(nlag+freq+1:nmin,:) iota];elsexmat = [xlag iota];end;otherwise % case of no transformation% generate lagged rhs matrixxlag = mlag(y,nlag);% constant termiota = ones(nobs,1);% truncate to feed lags and to end at begf-1 for estimationdys = trimr(y,nlag,nobs-begf+1);dy = y;xlag = trimr(xlag,nlag,nobs-begf+1);iota = trimr(iota,nlag,nobs-begf+1);% add x-matrix and constant to x-matrixif nx > 0xmat = [xlag x(nlag+1:nmin,:) iota];elsexmat = [xlag iota];end;end; % end of data transformation cases% dimension some result matricesbmat = zeros(k,neqs);yfor = zeros(nfor,neqs);% ----- get bhat estimates% save time by computing xpx only oncexpx = xmat'*xmat;% pull out each y-vector and run regressionsfor j=1:neqs; yvec = dys(:,j); bhat = (xpx)\(xmat'*yvec); % save bhat bmat(:,j) = bhat;end; % end of loop over equations% given bhat estimates, generate future forecasts % These may be levels, 1st-differences, growth rates or seas diff's% we worry transforming back to levels later% 1-step-ahead forecast xtrunc = [dy(nmin-nlag:nmin,:) zeros(1,neqs)];xfor = mlag(xtrunc,nlag);[xend junk] = size(xfor);xobs = xfor(xend,:);if nx > 0xvec = [xobs x(begf,:) 1];elsexvec = [xobs 1];end;% loop over equationsfor i=1:neqs;bhat = bmat(:,i);yfor(1,i) = xvec*bhat;end;xnew = zeros(nlag+1,neqs);% 2 through nlag-step-ahead forecastsfor step=2:nlag;if step <= nforxnew(1:nlag-step+1,:) = dy(nmin-nlag+step:nmin,:);xnew(nlag-step+2:nlag,:) = yfor(1:step-1,:);xnew(nlag+1,:) = zeros(1,neqs);xfor = mlag(xnew,nlag);[xend junk] = size(xfor);xobs = xfor(xend,:);if nx > 0xvec = [xobs x(begf+step-1,:) 1];elsexvec = [xobs 1];end;% loop over equationsfor i=1:neqs;bhat = bmat(:,i);yfor(step,i) = xvec*bhat;end;end;end;% nlag through nfore-step-ahead forecastsfor step=nlag:nfor-1;if step <= nforcnt = step-(nlag-1); for i=1:nlag; xnew(i,:) = yfor(cnt,:); cnt = cnt+1; end; xfor = mlag(xnew,nlag);[xend junk] = size(xfor);xobs = xfor(xend,:);if nx > 0xvec = [xobs x(begf+step,:) 1];elsexvec = [xobs 1];end;% loop over equationsfor i=1:neqs;bhat = bmat(:,i);yfor(step+1,i) = xvec*bhat;end;end;end;% we now worry about transforming the forecasts back% to levelsswitch tformcase 1 % 1st differences forecasts% convert 1st difference forecasts to levelsylevf = zeros(nfor,neqs);% 1-step-ahead forecastylevf(1,:) = yfor(1,:) + y(begf-1,:); % add change to actual from time t;% 2-nfor-step-ahead forecastsfor i=2:nfor % ylevf(i,:) = yfor(i,:) + ylevf(i-1,:);end;% end of 1st differences casecase 2 % growth rates forecasts% convert growth rate forecasts to levelsylevf = zeros(nfor,neqs);yfor = yfor/100.0; % growth-rates are mutiliplied by 100for step=1:nfor;if freq < step, % here we can use past level forecasts ylevf(step,:) = (1 + yfor(step,:)).*ylevf(step-freq,:);else % case of freq > step, use past actual levels ylevf(step,:) = (1 + yfor(step,:)).*y(begf+step-freq-1,:);end; % end of if freq <= stepend; % end of for step loopcase 3 % seasonal difference forecasts% convert seasonal difference forecasts to levelsfor step=1:nfor;if freq < step, % here we use past level forecasts ylevf(step,:) = yfor(step,:) + ylevf(step-freq,:);else % case of freq > step, use past actual levels ylevf(step,:) = yfor(step,:) + y(begf+step-freq-1,:);end; % end of if freq <= stepend; % end of for step loopotherwise % no transformation, so we have level forecasts alreadyylevf = yfor;end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -