Learn R Programming

systemfit (version 0.7-3)

print.systemfit.equation: Print output of systemfit estimation

Description

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

Usage

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

Arguments

x
an object of type systemfit.equation.
digits
number of digits to print.
...
not used by user.

Value

  • print.systemfit.equation returns nothing.

See Also

systemfit, print.systemfit and summary.systemfit.equation

Examples

Run this code
library( systemfit )

data( kmenta )
attach( kmenta )
demand <- q ~ p + d
supply <- q ~ p + 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
print( fitols$eq[[1]] )

Run the code above in your browser using DataLab