print.systemfit.system {systemfit}R Documentation

print.systemfit.system

Description

This function prints a summary of the estimated equation system.

Usage

print.systemfit.system(x, digits=6,...)

Arguments

x an object of type systemfit.system.
digits number of digits to print.
... not used by user.

Value

print.systemfit.system returns nothing.

Author(s)

Jeff D. Hamann jeff.hamann@forestinformatics.com

See Also

systemfit, print.systemfit.equation and summary.systemfit.system

Examples

## 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 )


[Package Contents]