Learn R Programming

micEconSNQP (version 0.6-10)

print.snqProfitEst: Print output of estimated SNQ profit function

Description

This function prints a summary estimation results of a symmetric normalized quadraric (SNQ) profit function.

Usage

# S3 method for snqProfitEst
print( x, … )

Arguments

x

an object of class snqProfitEst.

arguments passed to print.

See Also

snqProfitEst

Examples

Run this code
# NOT RUN {
library( systemfit )
# }
# NOT RUN {
if( requireNamespace( 'micEcon', quietly = TRUE ) ) {
   data( germanFarms, package = "micEcon" )
   germanFarms$qOutput   <- germanFarms$vOutput / germanFarms$pOutput
   germanFarms$qVarInput <- -germanFarms$vVarInput / germanFarms$pVarInput
   germanFarms$qLabor    <- -germanFarms$qLabor
   priceNames <- c( "pOutput", "pVarInput", "pLabor" )
   quantNames <- c( "qOutput", "qVarInput", "qLabor" )

   estResult <- snqProfitEst( priceNames, quantNames, "land", data = germanFarms )
   print( estResult )
}
# }

Run the code above in your browser using DataLab