Learn R Programming

micEcon (version 0.1-3)

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 class 'snqProfitEst':
print( x, digits=6, \dots )

Arguments

x
an object of class snqProfitEst.
digits
number of digits to print.
...
other arguments.

See Also

snqProfitEst

Examples

Run this code
library( systemfit )
   data( germanFarms )
   germanFarms$qOutput   <- germanFarms$vOutput / germanFarms$pOutput
   germanFarms$qVarInput <- -germanFarms$vVarInput / germanFarms$pVarInput
   germanFarms$qLabor    <- -germanFarms$qLabor
   pNames <- c( "pOutput", "pVarInput", "pLabor" )
   qNames <- c( "qOutput", "qVarInput", "qLabor" )

   estResult <- snqProfitEst( pNames, qNames, "land", data = germanFarms )
   print( estResult )

Run the code above in your browser using DataLab