print.rsfa {robustSFA} | R Documentation |
Print Method for Class rsfa
Description
This function prints the results of the rsfa
estimation.
Usage
## S3 method for class 'rsfa'
print(x, ...)
Arguments
x |
An object of class |
... |
Unused. |
Value
A named vector of MDPD estimates.
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)
print(fit.ml)
fit.mdpde<- rsfa(my.model, data = riceProdPhil, alpha = 0.1)
print(fit.mdpde)
[Package robustSFA version 0.2.0 Index]