Learn R Programming

systemfit (version 0.5-6)

summary.systemfit.sur: summary.systemfit.sur

Description

This function returns a summary of the system of equations.

Usage

summary.systemfit.sur(object,...)

Arguments

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

Value

  • summary.systemfit.sur returns an object of type systemfit.sur.

See Also

ols,twostage,surand threestage

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 SUR on each of the equations in the system
fitsur <- sur.systemfit( system, inst, labels, kmenta )

## print the results
print( fitsur )

Run the code above in your browser using DataLab