Learn R Programming

systemfit (version 0.7-3)

summary.systemfit: Print output of systemfit estimation

Description

This function returns a summary of the system of equations.

Usage

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

Arguments

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

Value

  • summary.systemfit returns an object of type systemfit.

See Also

systemfit, print.systemfit and print.systemfit

Examples

Run this code
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( fitols )

Run the code above in your browser using DataLab