
Returns the predicted values, their standard errors and the confidence limits of prediction.
# S3 method for systemfit
predict( object, newdata = NULL,
se.fit = FALSE, se.pred = FALSE,
interval = "none", level=0.95,
useDfSys = NULL, ... )# S3 method for systemfit.equation
predict( object, newdata = NULL,
se.fit = FALSE, se.pred = FALSE,
interval = "none", level=0.95,
useDfSys = NULL, ... )
predict.systemfit
returns a dataframe that
contains for each equation the predicted values
("<eqnLable>.pred") and if requested
the standard errors of the fitted values ("<eqnLable>.se.fit"),
the standard errors of the prediction ("<eqnLable>.se.pred"),
and the lower ("<eqnLable>.lwr") and upper ("<eqnLable>.upr")
limits of the confidence or prediction interval(s).
predict.systemfit.equation
returns a dataframe that
contains the predicted values ("fit") and if requested
the standard errors of the fitted values ("se.fit"),
the standard errors of the prediction ("se.pred"),
and the lower ("lwr") and upper ("upr")
limits of the confidence or prediction interval(s).
an object of class systemfit
or
systemfit.equation
.
An optional data frame in which to look for variables with
which to predict. If it is NULL
, the fitted values are returned.
return the standard error of the fitted values?
return the standard error of prediction?
Type of interval calculation ("none", "confidence" or "prediction")
Tolerance/confidence level.
logical. Use the degrees of freedom of the whole system
(in place of the degrees of freedom of the single equation)
to calculate the confidence or prediction intervals.
If it not specified (NULL
), it is set to TRUE
if restrictions on the coefficients are imposed and FALSE
otherwise.
additional optional arguments.
Arne Henningsen arne.henningsen@googlemail.com
The variance of the fitted values
(used to calculate the standard errors of the fitted values
and the "confidence interval") is calculated by
The variances of the predicted values
(used to calculate the standard errors of the predicted values
and the "prediction intervals") is calculated by
Greene, W. H. (2003) Econometric Analysis, Fifth Edition, Macmillan.
Gujarati, D. N. (1995) Basic Econometrics, Third Edition, McGraw-Hill.
Kmenta, J. (1997) Elements of Econometrics, Second Edition, University of Michigan Publishing.
systemfit
, predict
data( "Kmenta" )
eqDemand <- consump ~ price + income
eqSupply <- consump ~ price + farmPrice + trend
system <- list( demand = eqDemand, supply = eqSupply )
## OLS estimation
fitols <- systemfit( system, data=Kmenta )
## predicted values and limits
predict( fitols )
## predicted values of the first equation
predict( fitols$eq[[1]] )
## predicted values of the second equation
predict( fitols$eq[[2]] )
Run the code above in your browser using DataLab