print.rsfa | R Documentation |
rsfa
This function prints the results of the rsfa
estimation.
## S3 method for class 'rsfa'
print(x, ...)
x |
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)
print(fit.ml)
fit.mdpde<- rsfa(my.model, data = riceProdPhil, alpha = 0.1)
print(fit.mdpde)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.