summary.rsfa | R Documentation |
rsfa
This function provides a summary of the MDPD estimation, including coefficient estimates, standard errors, z-values, p-values, and significance codes.
## S3 method for class 'rsfa'
summary(object, ...)
object |
An object of class |
... |
Unused. |
A summary table with estimates, standard errors, z-values, p-values, and significance codes.
## 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)
summary(fit.ml)
fit.mdpde<- rsfa(my.model, data = riceProdPhil, alpha = 0.1)
summary(fit.mdpde)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.