fitted.systemfit {systemfit} | R Documentation |
This function extracts the fitted values of all equations
from an object returned by systemfit
.
## S3 method for class 'systemfit': fitted( object, ... )
object |
an object of type systemfit . |
... |
other arguments. |
fitted.systemfit
returns the vector of fitted values.
Arne Henningsen ahenningsen@agric-econ.uni-kiel.de
systemfit
, fitted.systemfit.equation
and fitted
## Not run: library( systemfit ) data( kmenta ) attach( kmenta ) demand <- q ~ p + d supply <- q ~ p + f + a labels <- list( "demand", "supply" ) system <- list( demand, supply ) ## perform OLS on each of the equations in the system fitols <- systemfit( "OLS", system, labels ) ## print the fitted values fitted( fitols )