Function to estimate a linear model by the two stage least squares method.
tsls(g,x,data)
Arguments
g: A formula describing the linear regression model (see details below).
x: The matrix of instruments (see details below).
data: A data.frame or a matrix with column names (Optionnal).
Details
The function just calls gmm with the option vcov="iid". It just simplifies the the implementation of 2SLS. The users don't have to worry about all the options offered in gmm. The model is
Yi=Xiβ+ui
In the first step, lm is used to regress Xi on the set of instruments Zi. The second step also uses lm to regress Yi on the fitted values of the first step.
Returns
'tsls' returns an object of 'class' '"tsls"' which inherits from class '"gmm"'.
The functions 'summary' is used to obtain and print a summary of the results. It also compute the J-test of overidentying restriction
The object of class "gmm" is a list containing at least:
coefficients: k×1 vector of coefficients
residuals: the residuals, that is response minus fitted values if "g" is a formula.
fitted.values: the fitted mean values if "g" is a formula.
vcov: the covariance matrix of the coefficients
objective: the value of the objective function ∥var(gˉ)−1/2gˉ∥2
terms: the terms object used when g is a formula.
call: the matched call.
y: if requested, the response used (if "g" is a formula).
x: if requested, the model matrix used if "g" is a formula or the data if "g" is a function.
model: if requested (the default), the model frame used if "g" is a formula.
algoInfo: Information produced by either optim or nlminb related to the convergence if "g" is a function. It is printed by the summary.gmm method.
References
Hansen, L.P. (1982), Large Sample Properties of Generalized Method of Moments Estimators. Econometrica, 50 , 1029-1054,