Learn R Programming

micEcon (version 0.5-22)

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, \dots )

Arguments

x
an object of class snqProfitEst.
...
arguments passed to print.

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
   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