View source: R/confint.systemfit.R
print.confint.systemfit | R Documentation |
This function prints the confidence intervals of the coefficients of the estimated equation system.
## S3 method for class 'confint.systemfit'
print( x, digits=3, ... )
x |
an object of type |
digits |
number of digits to print. |
... |
other arguments. |
Arne Henningsen arne.henningsen@googlemail.com
systemfit
, confint.systemfit
and confint.systemfit.equation
data( "Kmenta" )
eqDemand <- consump ~ price + income
eqSupply <- consump ~ price + farmPrice + trend
system <- list( demand = eqDemand, supply = eqSupply )
## perform OLS on each of the equations in the system
fitols <- systemfit( system, data = Kmenta )
## calculate and print the confidence intervals
## of all coefficients
ci <- confint( fitols )
print( ci, digits=4 )
## calculate and print the confidence intervals
## of the coefficients of the second equation
ci2 <- confint( fitols$eq[[2]] )
print( ci2, digits=4 )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.