Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

terms.systemfit

Model Terms of systemfit Objects


Description

This method extracts the model terms from fitted objects returned by systemfit.

Usage

## S3 method for class 'systemfit'
terms( x, ... )
   ## S3 method for class 'systemfit.equation'
terms( x, ... )

Arguments

x

an object of class systemfit.

...

currently not used.

Value

terms.systemfit.equation returns the model terms of a single equation of a systemfit object. terms.systemfit.equation returns a list of model terms: one model term object for each equation of the systemfit object.

Author(s)

See Also

Examples

data( "Kmenta" )
eqDemand <- consump ~ price + income
eqSupply <- consump ~ price + farmPrice + trend
system <- list( demand = eqDemand, supply = eqSupply )

## perform a SUR estimation
fitsur <- systemfit( system, "SUR", data = Kmenta )

## model terms of the second equation
terms( fitsur$eq[[ 2 ]] )

## all model terms of the system
terms( fitsur )

systemfit

Estimating Systems of Simultaneous Equations

v1.1-24
GPL (>= 2)
Authors
Arne Henningsen and Jeff D. Hamann
Initial release
2019-12-08

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.