Learn R Programming

systemfit (version 0.8-0)

print.systemfit: Print results of systemfit estimation

Description

These functions print a few results of the estimated equation system.

Usage

## S3 method for class 'systemfit':
print( x, digits=6, \dots )

## S3 method for class 'systemfit.equation': print( x, digits=6, ... )

Arguments

x
an object of class systemfit or systemfit.equation.
digits
number of digits to print.
...
other arguments.

See Also

systemfit, summary.systemfit

Examples

Run this code
data( "Kmenta" )
demand <- consump ~ price + income
supply <- consump ~ price + farmPrice + trend
labels <- list( "demand", "supply" )
system <- list( demand, supply )

## perform OLS on each of the equations in the system
fitols <- systemfit( "OLS", system, labels, data = Kmenta )

## results of the whole system
print( fitols )

## results of the first equation
print( fitols$eq[[1]] )

## results of the second equation
print( fitols$eq[[2]] )

Run the code above in your browser using DataLab