Learn R Programming

systemfit (version 0.7-3)

coef.systemfit: Coefficients of systemfit object

Description

This function extracts the coefficients from an object returned by systemfit.

Usage

## S3 method for class 'systemfit':
coef( object, \dots)

Arguments

object
an object of type systemfit.
...
other arguments.

Value

  • coef.systemfit returns a vector of all estimated coefficients.

See Also

systemfit, coef.systemfit.equation and coef

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 coefficients
coef( fitols )

Run the code above in your browser using DataLab