Dynamic factors and coincident indices¶
Factor models generally try to find a small number of unobserved “factors” that influence a substantial portion of the variation in a larger number of observed variables, and they are related to dimension-reduction techniques such as principal components analysis. Dynamic factor models explicitly model the transition dynamics of the unobserved factors, and so are often applied to time-series data.
Macroeconomic coincident indices are designed to capture the common component of the “business cycle”; such a component is assumed to simultaneously affect many macroeconomic variables. Although the estimation and use of coincident indices (for example the Index of Coincident Economic Indicators) pre-dates dynamic factor models, in several influential papers Stock and Watson (1989, 1991) used a dynamic factor model to provide a theoretical foundation for them.
Below, we follow the treatment found in Kim and Nelson (1999), of the Stock and Watson (1991) model, to formulate a dynamic factor model, estimate its parameters via maximum likelihood, and create a coincident index.
Macroeconomic data¶
The coincident index is created by considering the comovements in four macroeconomic variables (versions of these variables are available on FRED; the ID of the series used below is given in parentheses):
Industrial production (IPMAN)
Real aggregate income (excluding transfer payments) (W875RX1)
Manufacturing and trade sales (CMRMTSPL)
Employees on non-farm payrolls (PAYEMS)
In all cases, the data is at the monthly frequency and has been seasonally adjusted; the time-frame considered is 1972 - 2005.
[1]:
%matplotlib inline
import numpy as np
import pandas as pd
import statsmodels.api as sm
import matplotlib.pyplot as plt
np.set_printoptions(precision=4, suppress=True, linewidth=120)
[2]:
from pandas_datareader.data import DataReader
# Get the datasets from FRED
start = '1979-01-01'
end = '2014-12-01'
indprod = DataReader('IPMAN', 'fred', start=start, end=end)
income = DataReader('W875RX1', 'fred', start=start, end=end)
sales = DataReader('CMRMTSPL', 'fred', start=start, end=end)
emp = DataReader('PAYEMS', 'fred', start=start, end=end)
# dta = pd.concat((indprod, income, sales, emp), axis=1)
# dta.columns = ['indprod', 'income', 'sales', 'emp']
Note: in a recent update on FRED (8/12/15) the time series CMRMTSPL was truncated to begin in 1997; this is probably a mistake due to the fact that CMRMTSPL is a spliced series, so the earlier period is from the series HMRMT and the latter period is defined by CMRMT.
This has since (02/11/16) been corrected, however the series could also be constructed by hand from HMRMT and CMRMT, as shown below (process taken from the notes in the Alfred xls file).
[3]:
# HMRMT = DataReader('HMRMT', 'fred', start='1967-01-01', end=end)
# CMRMT = DataReader('CMRMT', 'fred', start='1997-01-01', end=end)
[4]:
# HMRMT_growth = HMRMT.diff() / HMRMT.shift()
# sales = pd.Series(np.zeros(emp.shape[0]), index=emp.index)
# # Fill in the recent entries (1997 onwards)
# sales[CMRMT.index] = CMRMT
# # Backfill the previous entries (pre 1997)
# idx = sales.loc[:'1997-01-01'].index
# for t in range(len(idx)-1, 0, -1):
# month = idx[t]
# prev_month = idx[t-1]
# sales.loc[prev_month] = sales.loc[month] / (1 + HMRMT_growth.loc[prev_month].values)
[5]:
dta = pd.concat((indprod, income, sales, emp), axis=1)
dta.columns = ['indprod', 'income', 'sales', 'emp']
[6]:
dta.loc[:, 'indprod':'emp'].plot(subplots=True, layout=(2, 2), figsize=(15, 6));
Stock and Watson (1991) report that for their datasets, they could not reject the null hypothesis of a unit root in each series (so the series are integrated), but they did not find strong evidence that the series were co-integrated.
As a result, they suggest estimating the model using the first differences (of the logs) of the variables, demeaned and standardized.
[7]:
# Create log-differenced series
dta['dln_indprod'] = (np.log(dta.indprod)).diff() * 100
dta['dln_income'] = (np.log(dta.income)).diff() * 100
dta['dln_sales'] = (np.log(dta.sales)).diff() * 100
dta['dln_emp'] = (np.log(dta.emp)).diff() * 100
# De-mean and standardize
dta['std_indprod'] = (dta['dln_indprod'] - dta['dln_indprod'].mean()) / dta['dln_indprod'].std()
dta['std_income'] = (dta['dln_income'] - dta['dln_income'].mean()) / dta['dln_income'].std()
dta['std_sales'] = (dta['dln_sales'] - dta['dln_sales'].mean()) / dta['dln_sales'].std()
dta['std_emp'] = (dta['dln_emp'] - dta['dln_emp'].mean()) / dta['dln_emp'].std()
Dynamic factors¶
A general dynamic factor model is written as:
where \(y_t\) are observed data, \(f_t\) are the unobserved factors (evolving as a vector autoregression), \(x_t\) are (optional) exogenous variables, and \(u_t\) is the error, or “idiosyncratic”, process (\(u_t\) is also optionally allowed to be autocorrelated). The \(\Lambda\) matrix is often referred to as the matrix of “factor loadings”. The variance of the factor error term is set to the identity matrix to ensure identification of the unobserved factors.
This model can be cast into state space form, and the unobserved factor estimated via the Kalman filter. The likelihood can be evaluated as a byproduct of the filtering recursions, and maximum likelihood estimation used to estimate the parameters.
Model specification¶
The specific dynamic factor model in this application has 1 unobserved factor which is assumed to follow an AR(2) process. The innovations \(\varepsilon_t\) are assumed to be independent (so that \(\Sigma\) is a diagonal matrix) and the error term associated with each equation, \(u_{i,t}\) is assumed to follow an independent AR(2) process.
Thus the specification considered here is:
where \(i\) is one of: [indprod, income, sales, emp ]
.
This model can be formulated using the DynamicFactor
model built-in to statsmodels. In particular, we have the following specification:
k_factors = 1
- (there is 1 unobserved factor)factor_order = 2
- (it follows an AR(2) process)error_var = False
- (the errors evolve as independent AR processes rather than jointly as a VAR - note that this is the default option, so it is not specified below)error_order = 2
- (the errors are autocorrelated of order 2: i.e. AR(2) processes)error_cov_type = 'diagonal'
- (the innovations are uncorrelated; this is again the default)
Once the model is created, the parameters can be estimated via maximum likelihood; this is done using the fit()
method.
Note: recall that we have demeaned and standardized the data; this will be important in interpreting the results that follow.
Aside: in their empirical example, Kim and Nelson (1999) actually consider a slightly different model in which the employment variable is allowed to also depend on lagged values of the factor - this model does not fit into the built-in DynamicFactor
class, but can be accommodated by using a subclass to implement the required new parameters and restrictions - see Appendix A, below.
Parameter estimation¶
Multivariate models can have a relatively large number of parameters, and it may be difficult to escape from local minima to find the maximized likelihood. In an attempt to mitigate this problem, I perform an initial maximization step (from the model-defined starting parameters) using the modified Powell method available in Scipy (see the minimize documentation for more information). The resulting parameters are then used as starting parameters in the standard LBFGS optimization method.
[8]:
# Get the endogenous data
endog = dta.loc['1979-02-01':, 'std_indprod':'std_emp']
# Create the model
mod = sm.tsa.DynamicFactor(endog, k_factors=1, factor_order=2, error_order=2)
initial_res = mod.fit(method='powell', disp=False)
res = mod.fit(initial_res.params, disp=False)
/home/travis/build/statsmodels/statsmodels/statsmodels/tsa/base/tsa_model.py:162: ValueWarning: No frequency information was provided, so inferred frequency MS will be used.
% freq, ValueWarning)
/home/travis/build/statsmodels/statsmodels/statsmodels/base/model.py:568: ConvergenceWarning: Maximum Likelihood optimization failed to converge. Check mle_retvals
"Check mle_retvals", ConvergenceWarning)
Estimates¶
Once the model has been estimated, there are two components that we can use for analysis or inference:
The estimated parameters
The estimated factor
Parameters¶
The estimated parameters can be helpful in understanding the implications of the model, although in models with a larger number of observed variables and / or unobserved factors they can be difficult to interpret.
One reason for this difficulty is due to identification issues between the factor loadings and the unobserved factors. One easy-to-see identification issue is the sign of the loadings and the factors: an equivalent model to the one displayed below would result from reversing the signs of all factor loadings and the unobserved factor.
Here, one of the easy-to-interpret implications in this model is the persistence of the unobserved factor: we find that exhibits substantial persistence.
[9]:
print(res.summary(separate_params=False))
Statespace Model Results
=================================================================================================================
Dep. Variable: ['std_indprod', 'std_income', 'std_sales', 'std_emp'] No. Observations: 431
Model: DynamicFactor(factors=1, order=2) Log Likelihood -2066.915
+ AR(2) errors AIC 4169.831
Date: Tue, 17 Dec 2019 BIC 4243.021
Time: 23:43:20 HQIC 4198.729
Sample: 02-01-1979
- 12-01-2014
Covariance Type: opg
====================================================================================================
coef std err z P>|z| [0.025 0.975]
----------------------------------------------------------------------------------------------------
loading.f1.std_indprod -0.8524 0.016 -52.173 0.000 -0.884 -0.820
loading.f1.std_income -0.2430 0.033 -7.351 0.000 -0.308 -0.178
loading.f1.std_sales -0.4731 0.024 -20.066 0.000 -0.519 -0.427
loading.f1.std_emp -0.2692 0.028 -9.669 0.000 -0.324 -0.215
sigma2.std_indprod 2.27e-15 1.37e-09 1.66e-06 1.000 -2.68e-09 2.68e-09
sigma2.std_income 0.9089 0.017 53.352 0.000 0.876 0.942
sigma2.std_sales 0.6032 0.035 17.330 0.000 0.535 0.671
sigma2.std_emp 0.3725 0.014 26.623 0.000 0.345 0.400
L1.f1.f1 0.2190 0.019 11.537 0.000 0.182 0.256
L2.f1.f1 0.2814 0.023 11.999 0.000 0.235 0.327
L1.e(std_indprod).e(std_indprod) -1.5174 0.000 -5455.419 0.000 -1.518 -1.517
L2.e(std_indprod).e(std_indprod) -1.0000 0.000 -5725.669 0.000 -1.000 -1.000
L1.e(std_income).e(std_income) -0.1585 0.018 -8.580 0.000 -0.195 -0.122
L2.e(std_income).e(std_income) -0.0833 0.020 -4.204 0.000 -0.122 -0.044
L1.e(std_sales).e(std_sales) -0.4430 0.029 -15.054 0.000 -0.501 -0.385
L2.e(std_sales).e(std_sales) -0.2058 0.020 -10.476 0.000 -0.244 -0.167
L1.e(std_emp).e(std_emp) 0.2989 0.033 9.100 0.000 0.235 0.363
L2.e(std_emp).e(std_emp) 0.4858 0.029 16.938 0.000 0.430 0.542
========================================================================================================
Ljung-Box (Q): 85.11, 34.51, 68.73, 68.85 Jarque-Bera (JB): 193.87, 9396.60, 19.80, 4209.89
Prob(Q): 0.00, 0.72, 0.00, 0.00 Prob(JB): 0.00, 0.00, 0.00, 0.00
Heteroskedasticity (H): 0.80, 4.85, 0.47, 0.41 Skew: 0.09, -0.98, 0.18, 0.86
Prob(H) (two-sided): 0.18, 0.00, 0.00, 0.00 Kurtosis: 6.28, 25.79, 3.98, 18.21
========================================================================================================
Warnings:
[1] Covariance matrix calculated using the outer product of gradients (complex-step).
[2] Covariance matrix is singular or near-singular, with condition number 3.38e+17. Standard errors may be unstable.
Estimated factors¶
While it can be useful to plot the unobserved factors, it is less useful here than one might think for two reasons:
The sign-related identification issue described above.
Since the data was differenced, the estimated factor explains the variation in the differenced data, not the original data.
It is for these reasons that the coincident index is created (see below).
With these reservations, the unobserved factor is plotted below, along with the NBER indicators for US recessions. It appears that the factor is successful at picking up some degree of business cycle activity.
[10]:
fig, ax = plt.subplots(figsize=(13,3))
# Plot the factor
dates = endog.index._mpl_repr()
ax.plot(dates, res.factors.filtered[0], label='Factor')
ax.legend()
# Retrieve and also plot the NBER recession indicators
rec = DataReader('USREC', 'fred', start=start, end=end)
ylim = ax.get_ylim()
ax.fill_between(dates[:-3], ylim[0], ylim[1], rec.values[:-4,0], facecolor='k', alpha=0.1);
Post-estimation¶
Although here we will be able to interpret the results of the model by constructing the coincident index, there is a useful and generic approach for getting a sense for what is being captured by the estimated factor. By taking the estimated factors as given, regressing them (and a constant) each (one at a time) on each of the observed variables, and recording the coefficients of determination (\(R^2\) values), we can get a sense of the variables for which each factor explains a substantial portion of the variance and the variables for which it does not.
In models with more variables and more factors, this can sometimes lend interpretation to the factors (for example sometimes one factor will load primarily on real variables and another on nominal variables).
In this model, with only four endogenous variables and one factor, it is easy to digest a simple table of the \(R^2\) values, but in larger models it is not. For this reason, a bar plot is often employed; from the plot we can easily see that the factor explains most of the variation in industrial production index and a large portion of the variation in sales and employment, it is less helpful in explaining income.
[11]:
res.plot_coefficients_of_determination(figsize=(8,2));
Coincident Index¶
As described above, the goal of this model was to create an interpretable series which could be used to understand the current status of the macroeconomy. This is what the coincident index is designed to do. It is constructed below. For readers interested in an explanation of the construction, see Kim and Nelson (1999) or Stock and Watson (1991).
In essence, what is done is to reconstruct the mean of the (differenced) factor. We will compare it to the coincident index on published by the Federal Reserve Bank of Philadelphia (USPHCI on FRED).
[12]:
usphci = DataReader('USPHCI', 'fred', start='1979-01-01', end='2014-12-01')['USPHCI']
usphci.plot(figsize=(13,3));
[13]:
dusphci = usphci.diff()[1:].values
def compute_coincident_index(mod, res):
# Estimate W(1)
spec = res.specification
design = mod.ssm['design']
transition = mod.ssm['transition']
ss_kalman_gain = res.filter_results.kalman_gain[:,:,-1]
k_states = ss_kalman_gain.shape[0]
W1 = np.linalg.inv(np.eye(k_states) - np.dot(
np.eye(k_states) - np.dot(ss_kalman_gain, design),
transition
)).dot(ss_kalman_gain)[0]
# Compute the factor mean vector
factor_mean = np.dot(W1, dta.loc['1972-02-01':, 'dln_indprod':'dln_emp'].mean())
# Normalize the factors
factor = res.factors.filtered[0]
factor *= np.std(usphci.diff()[1:]) / np.std(factor)
# Compute the coincident index
coincident_index = np.zeros(mod.nobs+1)
# The initial value is arbitrary; here it is set to
# facilitate comparison
coincident_index[0] = usphci.iloc[0] * factor_mean / dusphci.mean()
for t in range(0, mod.nobs):
coincident_index[t+1] = coincident_index[t] + factor[t] + factor_mean
# Attach dates
coincident_index = pd.Series(coincident_index, index=dta.index).iloc[1:]
# Normalize to use the same base year as USPHCI
coincident_index *= (usphci.loc['1992-07-01'] / coincident_index.loc['1992-07-01'])
return coincident_index
Below we plot the calculated coincident index along with the US recessions and the comparison coincident index USPHCI.
[14]:
fig, ax = plt.subplots(figsize=(13,3))
# Compute the index
coincident_index = compute_coincident_index(mod, res)
# Plot the factor
dates = endog.index._mpl_repr()
ax.plot(dates, coincident_index, label='Coincident index')
ax.plot(usphci.index._mpl_repr(), usphci, label='USPHCI')
ax.legend(loc='lower right')
# Retrieve and also plot the NBER recession indicators
ylim = ax.get_ylim()
ax.fill_between(dates[:-3], ylim[0], ylim[1], rec.values[:-4,0], facecolor='k', alpha=0.1);
Appendix 1: Extending the dynamic factor model¶
Recall that the previous specification was described by:
Written in state space form, the previous specification of the model had the following observation equation:
and transition equation:
the DynamicFactor
model handles setting up the state space representation and, in the DynamicFactor.update
method, it fills in the fitted parameter values into the appropriate locations.
The extended specification is the same as in the previous example, except that we also want to allow employment to depend on lagged values of the factor. This creates a change to the \(y_{\text{emp},t}\) equation. Now we have:
Now, the corresponding observation equation should look like the following:
Notice that we have introduced two new state variables, \(f_{t-2}\) and \(f_{t-3}\), which means we need to update the transition equation:
This model cannot be handled out-of-the-box by the DynamicFactor
class, but it can be handled by creating a subclass when alters the state space representation in the appropriate way.
First, notice that if we had set factor_order = 4
, we would almost have what we wanted. In that case, the last line of the observation equation would be:
and the first line of the transition equation would be:
Relative to what we want, we have the following differences:
In the above situation, the \(\lambda_{\text{emp}, j}\) are forced to be zero for \(j > 0\), and we want them to be estimated as parameters.
We only want the factor to transition according to an AR(2), but under the above situation it is an AR(4).
Our strategy will be to subclass DynamicFactor
, and let it do most of the work (setting up the state space representation, etc.) where it assumes that factor_order = 4
. The only things we will actually do in the subclass will be to fix those two issues.
First, here is the full code of the subclass; it is discussed below. It is important to note at the outset that none of the methods defined below could have been omitted. In fact, the methods __init__
, start_params
, param_names
, transform_params
, untransform_params
, and update
form the core of all state space models in statsmodels, not just the DynamicFactor
class.
[15]:
from statsmodels.tsa.statespace import tools
class ExtendedDFM(sm.tsa.DynamicFactor):
def __init__(self, endog, **kwargs):
# Setup the model as if we had a factor order of 4
super(ExtendedDFM, self).__init__(
endog, k_factors=1, factor_order=4, error_order=2,
**kwargs)
# Note: `self.parameters` is an ordered dict with the
# keys corresponding to parameter types, and the values
# the number of parameters of that type.
# Add the new parameters
self.parameters['new_loadings'] = 3
# Cache a slice for the location of the 4 factor AR
# parameters (a_1, ..., a_4) in the full parameter vector
offset = (self.parameters['factor_loadings'] +
self.parameters['exog'] +
self.parameters['error_cov'])
self._params_factor_ar = np.s_[offset:offset+2]
self._params_factor_zero = np.s_[offset+2:offset+4]
@property
def start_params(self):
# Add three new loading parameters to the end of the parameter
# vector, initialized to zeros (for simplicity; they could
# be initialized any way you like)
return np.r_[super(ExtendedDFM, self).start_params, 0, 0, 0]
@property
def param_names(self):
# Add the corresponding names for the new loading parameters
# (the name can be anything you like)
return super(ExtendedDFM, self).param_names + [
'loading.L%d.f1.%s' % (i, self.endog_names[3]) for i in range(1,4)]
def transform_params(self, unconstrained):
# Perform the typical DFM transformation (w/o the new parameters)
constrained = super(ExtendedDFM, self).transform_params(
unconstrained[:-3])
# Redo the factor AR constraint, since we only want an AR(2),
# and the previous constraint was for an AR(4)
ar_params = unconstrained[self._params_factor_ar]
constrained[self._params_factor_ar] = (
tools.constrain_stationary_univariate(ar_params))
# Return all the parameters
return np.r_[constrained, unconstrained[-3:]]
def untransform_params(self, constrained):
# Perform the typical DFM untransformation (w/o the new parameters)
unconstrained = super(ExtendedDFM, self).untransform_params(
constrained[:-3])
# Redo the factor AR unconstrained, since we only want an AR(2),
# and the previous unconstrained was for an AR(4)
ar_params = constrained[self._params_factor_ar]
unconstrained[self._params_factor_ar] = (
tools.unconstrain_stationary_univariate(ar_params))
# Return all the parameters
return np.r_[unconstrained, constrained[-3:]]
def update(self, params, transformed=True, **kwargs):
# Peform the transformation, if required
if not transformed:
params = self.transform_params(params)
params[self._params_factor_zero] = 0
# Now perform the usual DFM update, but exclude our new parameters
super(ExtendedDFM, self).update(params[:-3], transformed=True, **kwargs)
# Finally, set our new parameters in the design matrix
self.ssm['design', 3, 1:4] = params[-3:]
So what did we just do?
``__init__``
The important step here was specifying the base dynamic factor model which we were operating with. In particular, as described above, we initialize with factor_order=4
, even though we will only end up with an AR(2) model for the factor. We also performed some general setup-related tasks.
``start_params``
start_params
are used as initial values in the optimizer. Since we are adding three new parameters, we need to pass those in. If we had not done this, the optimizer would use the default starting values, which would be three elements short.
``param_names``
param_names
are used in a variety of places, but especially in the results class. Below we get a full result summary, which is only possible when all the parameters have associated names.
``transform_params`` and ``untransform_params``
The optimizer selects possibly parameter values in an unconstrained way. That’s not usually desired (since variances cannot be negative, for example), and transform_params
is used to transform the unconstrained values used by the optimizer to constrained values appropriate to the model. Variances terms are typically squared (to force them to be positive), and AR lag coefficients are often constrained to lead to a stationary model. untransform_params
is used for the reverse operation (and
is important because starting parameters are usually specified in terms of values appropriate to the model, and we need to convert them to parameters appropriate to the optimizer before we can begin the optimization routine).
Even though we do not need to transform or untransform our new parameters (the loadings can in theory take on any values), we still need to modify this function for two reasons:
The version in the
DynamicFactor
class is expecting 3 fewer parameters than we have now. At a minimum, we need to handle the three new parameters.The version in the
DynamicFactor
class constrains the factor lag coefficients to be stationary as though it was an AR(4) model. Since we actually have an AR(2) model, we need to re-do the constraint. We also set the last two autoregressive coefficients to be zero here.
``update``
The most important reason we need to specify a new update
method is because we have three new parameters that we need to place into the state space formulation. In particular we let the parent DynamicFactor.update
class handle placing all the parameters except the three new ones in to the state space representation, and then we put the last three in manually.
[16]:
# Create the model
extended_mod = ExtendedDFM(endog)
initial_extended_res = extended_mod.fit(maxiter=1000, disp=False)
extended_res = extended_mod.fit(initial_extended_res.params, method='nm', maxiter=1000)
print(extended_res.summary(separate_params=False))
/home/travis/build/statsmodels/statsmodels/statsmodels/tsa/base/tsa_model.py:162: ValueWarning: No frequency information was provided, so inferred frequency MS will be used.
% freq, ValueWarning)
Optimization terminated successfully.
Current function value: 4.698591
Iterations: 295
Function evaluations: 504
Statespace Model Results
=================================================================================================================
Dep. Variable: ['std_indprod', 'std_income', 'std_sales', 'std_emp'] No. Observations: 431
Model: DynamicFactor(factors=1, order=4) Log Likelihood -2025.093
+ AR(2) errors AIC 4096.186
Date: Tue, 17 Dec 2019 BIC 4189.706
Time: 23:43:31 HQIC 4133.111
Sample: 02-01-1979
- 12-01-2014
Covariance Type: opg
====================================================================================================
coef std err z P>|z| [0.025 0.975]
----------------------------------------------------------------------------------------------------
loading.f1.std_indprod -0.6890 0.036 -19.095 0.000 -0.760 -0.618
loading.f1.std_income -0.2583 0.038 -6.722 0.000 -0.334 -0.183
loading.f1.std_sales -0.4390 0.024 -18.550 0.000 -0.485 -0.393
loading.f1.std_emp -0.4168 0.039 -10.758 0.000 -0.493 -0.341
sigma2.std_indprod 0.2455 0.046 5.318 0.000 0.155 0.336
sigma2.std_income 0.8737 0.030 29.560 0.000 0.816 0.932
sigma2.std_sales 0.5346 0.034 15.532 0.000 0.467 0.602
sigma2.std_emp 0.2530 0.024 10.497 0.000 0.206 0.300
L1.f1.f1 0.3048 0.059 5.172 0.000 0.189 0.420
L2.f1.f1 0.3767 0.062 6.077 0.000 0.255 0.498
L3.f1.f1 0 6.86e-10 0 1.000 -1.34e-09 1.34e-09
L4.f1.f1 0 6.86e-10 0 1.000 -1.34e-09 1.34e-09
L1.e(std_indprod).e(std_indprod) -0.3203 0.113 -2.828 0.005 -0.542 -0.098
L2.e(std_indprod).e(std_indprod) -0.2253 0.090 -2.495 0.013 -0.402 -0.048
L1.e(std_income).e(std_income) -0.1730 0.022 -7.836 0.000 -0.216 -0.130
L2.e(std_income).e(std_income) -0.0936 0.044 -2.118 0.034 -0.180 -0.007
L1.e(std_sales).e(std_sales) -0.4895 0.046 -10.601 0.000 -0.580 -0.399
L2.e(std_sales).e(std_sales) -0.2268 0.050 -4.540 0.000 -0.325 -0.129
L1.e(std_emp).e(std_emp) 0.2341 0.042 5.530 0.000 0.151 0.317
L2.e(std_emp).e(std_emp) 0.4956 0.051 9.766 0.000 0.396 0.595
loading.L1.f1.std_emp -0.0724 0.038 -1.895 0.058 -0.147 0.002
loading.L2.f1.std_emp 0.0004 0.036 0.010 0.992 -0.071 0.071
loading.L3.f1.std_emp -0.1738 0.028 -6.168 0.000 -0.229 -0.119
========================================================================================================
Ljung-Box (Q): 59.19, 34.27, 68.30, 61.67 Jarque-Bera (JB): 231.73, 9688.65, 25.32, 3387.21
Prob(Q): 0.03, 0.73, 0.00, 0.02 Prob(JB): 0.00, 0.00, 0.00, 0.00
Heteroskedasticity (H): 0.76, 5.03, 0.44, 0.45 Skew: 0.22, -0.97, 0.24, 0.75
Prob(H) (two-sided): 0.11, 0.00, 0.00, 0.00 Kurtosis: 6.56, 26.15, 4.08, 16.65
========================================================================================================
Warnings:
[1] Covariance matrix calculated using the outer product of gradients (complex-step).
[2] Covariance matrix is singular or near-singular, with condition number 2.99e+17. Standard errors may be unstable.
Although this model increases the likelihood, it is not preferred by the AIC and BIC measures which penalize the additional three parameters.
Furthermore, the qualitative results are unchanged, as we can see from the updated \(R^2\) chart and the new coincident index, both of which are practically identical to the previous results.
[17]:
extended_res.plot_coefficients_of_determination(figsize=(8,2));
[18]:
fig, ax = plt.subplots(figsize=(13,3))
# Compute the index
extended_coincident_index = compute_coincident_index(extended_mod, extended_res)
# Plot the factor
dates = endog.index._mpl_repr()
ax.plot(dates, coincident_index, '-', linewidth=1, label='Basic model')
ax.plot(dates, extended_coincident_index, '--', linewidth=3, label='Extended model')
ax.plot(usphci.index._mpl_repr(), usphci, label='USPHCI')
ax.legend(loc='lower right')
ax.set(title='Coincident indices, comparison')
# Retrieve and also plot the NBER recession indicators
ylim = ax.get_ylim()
ax.fill_between(dates[:-3], ylim[0], ylim[1], rec.values[:-4,0], facecolor='k', alpha=0.1);