coef | R Documentation |
Returns the coefficients of the fitted market model.
## S4 method for signature 'market_fit'
coef(object)
## S4 method for signature 'market_fit'
coefficients(object)
object |
A fitted model object. |
A named vector of estimated model coefficients.
coef(market_fit)
: Estimated coefficients.
coefficients(market_fit)
: Estimated coefficients alias.
# estimate a model using the houses dataset
fit <- diseq_deterministic_adjustment(
HS | RM | ID | TREND ~
RM + TREND + W + CSHS + L1RM + L2RM + MONTH |
RM + TREND + W + L1RM + MA6DSF + MA3DHF + MONTH,
fair_houses(),
correlated_shocks = FALSE,
estimation_options = list(control = list(maxit = 1e+6))
)
# access the estimated coefficients
coef(fit)
coefficients(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.