print.systemfit {systemfit} | R Documentation |
This function prints a summary of the estimated equation system.
## S3 method for class 'systemfit': print(x, digits=6, ...)
x |
an object of type systemfit . |
digits |
number of digits to print. |
... |
other arguments. |
Jeff D. Hamann jeff.hamann@forestinformatics.com,
Arne Henningsen ahenningsen@agric-econ.uni-kiel.de
systemfit
, print.systemfit.equation
and summary.systemfit
## 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 results print( fitols )