R/print.frontier.R

Defines functions print.frontier

Documented in print.frontier

print.frontier <- function( x, digits = NULL, ... ) {

   if( is.null( digits ) ) {
      digits <- max( 3, getOption( "digits" ) - 3 )
   }
   cat( "\nCall:\n" )
   cat( deparse( x$call ) )
   cat( "\n\n" )
   cat( "Maximum likelihood estimates\n" )
   print.default( format( coef( x ), digits = digits ), print.gap = 2,
      quote = FALSE )
   invisible( x )
}

Try the frontier package in your browser

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

frontier documentation built on July 14, 2020, 3:01 a.m.