summary.systemfit.system {systemfit}R Documentation

summary.systemfit.system

Description

This function returns a summary of the system of equations.

Usage

summary.systemfit.system(object,...)

Arguments

object an object of type systemfit.system.
... not used by user.

Value

summary.systemfit.system returns an object of type systemfit.system.

Author(s)

Jeff D. Hamann jeff.hamann@forestinformatics.com

See Also

systemfit, print.systemfit.system and print.systemfit.system

Examples

## Not run: library( systemfit )

data( kmenta )
attach( kmenta )
demand <- q ~ p + d
supply <- q ~ p + f + a
inst <- ~ d + 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
summary.systemfit.system( fitols )

[Package Contents]