spreg.GM_Endog_Error_Hom¶
- class spreg.GM_Endog_Error_Hom(y, x, yend, q, w, slx_lags=0, slx_vars='All', max_iter=1, epsilon=1e-05, A1='hom_sc', vm=False, name_y=None, name_x=None, name_yend=None, name_q=None, name_w=None, name_ds=None, latex=False, hard_bound=False)[source]¶
GMM method for a spatial error model with homoskedasticity and endogenous variables, with results and diagnostics; based on Drukker et al. (2013) [DEP13], following Anselin (2011) [Ans11].
- Parameters:
- y
numpy.ndarray
orpandas.Series
nx1 array for dependent variable
- x
numpy.ndarray
orpandas
object
Two dimensional array with n rows and one column for each independent (exogenous) variable, excluding the constant
- yend
numpy.ndarray
orpandas
object
Two dimensional array with n rows and one column for each endogenous variable
- q
numpy.ndarray
orpandas
object
Two dimensional array with n rows and one column for each external exogenous variable to use as instruments (note: this should not contain any variables from x)
- w
pysal
W
object
Spatial weights object
- slx_lags
integer
Number of spatial lags of X to include in the model specification. If slx_lags>0, the specification becomes of the SLX-Error type.
- slx_vars
either
“All” (default
)or
list
of
booleans
to
select
x
variables
to be lagged
- max_iter
int
Maximum number of iterations of steps 2a and 2b from [ADKP10]. Note: epsilon provides an additional stop condition.
- epsilon
float
Minimum change in lambda required to stop iterations of steps 2a and 2b from [ADKP10]. Note: max_iter provides an additional stop condition.
- A1
str
If A1=’het’, then the matrix A1 is defined as in [ADKP10]. If A1=’hom’, then as in [Ans11]. If A1=’hom_sc’ (default), then as in [DEP13] and [DPR13].
- vmbool
If True, include variance-covariance matrix in summary results
- name_y
str
Name of dependent variable for use in output
- name_x
list
of
strings
Names of independent variables for use in output
- name_yend
list
of
strings
Names of endogenous variables for use in output
- name_q
list
of
strings
Names of instruments for use in output
- name_w
str
Name of weights matrix for use in output
- name_ds
str
Name of dataset for use in output
- latexbool
Specifies if summary is to be printed in latex format
- hard_boundbool
If true, raises an exception if the estimated spatial autoregressive parameter is outside the maximum/minimum bounds.
- Attributes
- ———-
- output
dataframe
regression results pandas dataframe
- summary
str
Summary of regression results and diagnostics (note: use in conjunction with the print command)
- betas
array
kx1 array of estimated coefficients
- u
array
nx1 array of residuals
- e_filtered
array
nx1 array of spatially filtered residuals
- predy
array
nx1 array of predicted y values
- n
integer
Number of observations
- k
integer
Number of variables for which coefficients are estimated (including the constant)
- y
array
nx1 array for dependent variable
- x
array
Two dimensional array with n rows and one column for each independent (exogenous) variable, including the constant
- yend
array
Two dimensional array with n rows and one column for each endogenous variable
- q
array
Two dimensional array with n rows and one column for each external exogenous variable used as instruments
- z
array
nxk array of variables (combination of x and yend)
- h
array
nxl array of instruments (combination of x and q)
- iter_stop
str
Stop criterion reached during iteration of steps 2a and 2b from [ADKP10].
- iteration
integer
Number of iterations of steps 2a and 2b from [ADKP10].
- mean_y
float
Mean of dependent variable
- std_y
float
Standard deviation of dependent variable
- vm
array
Variance covariance matrix (kxk)
- pr2
float
Pseudo R squared (squared correlation between y and ypred)
- sig2
float
Sigma squared used in computations
- std_err
array
1xk array of standard errors of the betas
- z_stat
list
of
tuples
z statistic; each tuple contains the pair (statistic, p-value), where each is a float
- name_y
str
Name of dependent variable for use in output
- name_x
list
of
strings
Names of independent variables for use in output
- name_yend
list
of
strings
Names of endogenous variables for use in output
- name_z
list
of
strings
Names of exogenous and endogenous variables for use in output
- name_q
list
of
strings
Names of external instruments
- name_h
list
of
strings
Names of all instruments used in ouput
- name_w
str
Name of weights matrix for use in output
- name_ds
str
Name of dataset for use in output
- title
str
Name of the regression method used
- hth
float
\(H'H\)
- y
Examples
We first need to import the needed modules, namely numpy to convert the data we read into arrays that
spreg
understands andpysal
to perform all the analysis.>>> import numpy as np >>> import libpysal
Open data on Columbus neighborhood crime (49 areas) using libpysal.io.open(). This is the DBF associated with the Columbus shapefile. Note that libpysal.io.open() also reads data in CSV format; since the actual class requires data to be passed in as numpy arrays, the user can read their data in using any method.
>>> db = libpysal.io.open(libpysal.examples.get_path('columbus.dbf'),'r')
Extract the HOVAL column (home values) from the DBF file and make it the dependent variable for the regression. Note that PySAL requires this to be an numpy array of shape (n, 1) as opposed to the also common shape of (n, ) that other packages accept.
>>> y = np.array(db.by_col("HOVAL")) >>> y = np.reshape(y, (49,1))
Extract INC (income) vector from the DBF to be used as independent variables in the regression. Note that PySAL requires this to be an nxj numpy array, where j is the number of independent variables (not including a constant). By default this class adds a vector of ones to the independent variables passed in.
>>> X = [] >>> X.append(db.by_col("INC")) >>> X = np.array(X).T
In this case we consider CRIME (crime rates) is an endogenous regressor. We tell the model that this is so by passing it in a different parameter from the exogenous variables (x).
>>> yd = [] >>> yd.append(db.by_col("CRIME")) >>> yd = np.array(yd).T
Because we have endogenous variables, to obtain a correct estimate of the model, we need to instrument for CRIME. We use DISCBD (distance to the CBD) for this and hence put it in the instruments parameter, ‘q’.
>>> q = [] >>> q.append(db.by_col("DISCBD")) >>> q = np.array(q).T
Since we want to run a spatial error model, we need to specify the spatial weights matrix that includes the spatial configuration of the observations into the error component of the model. To do that, we can open an already existing gal file or create a new one. In this case, we will create one from
columbus.shp
.>>> w = libpysal.weights.Rook.from_shapefile(libpysal.examples.get_path("columbus.shp"))
Unless there is a good reason not to do it, the weights have to be row-standardized so every row of the matrix sums to one. Among other things, his allows to interpret the spatial lag of a variable as the average value of the neighboring observations. In PySAL, this can be easily performed in the following way:
>>> w.transform = 'r'
We are all set with the preliminars, we are good to run the model. In this case, we will need the variables (exogenous and endogenous), the instruments and the weights matrix. If we want to have the names of the variables printed in the output summary, we will have to pass them in as well, although this is optional.
>>> reg = GM_Endog_Error_Hom(y, X, yd, q, w=w, A1='hom_sc', name_x=['inc'], name_y='hoval', name_yend=['crime'], name_q=['discbd'], name_ds='columbus')
Once we have run the model, we can explore a little bit the output. The regression object we have created has many attributes so take your time to discover them. This class offers an error model that assumes homoskedasticity but that unlike the models from
spreg.error_sp
, it allows for inference on the spatial parameter. Hence, we find the same number of betas as of standard errors, which we calculate taking the square root of the diagonal of the variance-covariance matrix:>>> print(reg.name_z) ['CONSTANT', 'inc', 'crime', 'lambda'] >>> print(np.around(np.hstack((reg.betas,np.sqrt(reg.vm.diagonal()).reshape(4,1))),4)) [[55.3658 23.496 ] [ 0.4643 0.7382] [-0.669 0.3943] [ 0.4321 0.1927]]
- __init__(y, x, yend, q, w, slx_lags=0, slx_vars='All', max_iter=1, epsilon=1e-05, A1='hom_sc', vm=False, name_y=None, name_x=None, name_yend=None, name_q=None, name_w=None, name_ds=None, latex=False, hard_bound=False)[source]¶
Methods
__init__
(y, x, yend, q, w[, slx_lags, ...])Attributes
- property mean_y¶
- property std_y¶