summary.systemfit.equation {systemfit}R Documentation

Print output of systemfit estimation

Description

This function returns a summary of one equation of the estimated equation system.

Usage

   ## S3 method for class 'systemfit.equation':
   summary( object, ... )

Arguments

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

Value

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

Author(s)

Jeff D. Hamann jeff.hamann@forestinformatics.com

See Also

systemfit, summary.systemfit and print.systemfit.equation

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.equation( fitols$eq[[1]] )

[Package Contents]