coef.rsfa | R Documentation |
rsfa
This function extracts the estimates from the object of class rsfa
.
## S3 method for class 'rsfa'
coef(object, ...)
object |
An object of class |
... |
Unused. |
A named vector of MDPD estimates.
## Example using the 'riceProdPhil' dataset from the `frontier` package
library(frontier)
data(riceProdPhil)
my.model <- log(PROD) ~ log(AREA) + log(LABOR) + log(NPK) + log(OTHER)
fit.ml <- rsfa(my.model, data = riceProdPhil)
coef(fit.ml)
fit.mdpde<- rsfa(my.model, data = riceProdPhil, alpha = 0.1)
coef(fit.mdpde)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.