summary.rsfa {robustSFA} | R Documentation |
Summary Method for Class rsfa
Description
This function provides a summary of the MDPD estimation, including coefficient estimates, standard errors, z-values, p-values, and significance codes.
Usage
## S3 method for class 'rsfa'
summary(object, ...)
Arguments
object |
An object of class |
... |
Unused. |
Value
A summary table with estimates, standard errors, z-values, p-values, and significance codes.
Examples
## 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)
[Package robustSFA version 0.2.0 Index]