Learn R Programming

robustSFA (version 0.2.0)

summary.rsfa: 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 rsfa
summary(object, ...)

Value

A summary table with estimates, standard errors, z-values, p-values, and significance codes.

Arguments

object

An object of class rsfa.

...

Unused.

Examples

Run this code
## 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)

Run the code above in your browser using DataLab