R/print.aidsConcav.R

Defines functions print.aidsConcav

Documented in print.aidsConcav

print.aidsConcav <- function( x, header = TRUE, ... ) {
   if( header ) {
      cat( "\nChecking the concavity condition of an " )
      cat( "Almost Ideal Demand System (AIDS):\n" )
   }
   cat( "Concavity is fulfilled at " )
   cat( x$nConcavObs, "out of", x$nValidObs, "observations" )
   cat( " (", x$concavPercent, "%)\n", sep = "" )

   invisible( x )
}

Try the micEconAids package in your browser

Any scripts or data that you put into this service are public.

micEconAids documentation built on May 20, 2022, 5:05 p.m.