R/print.ddf.R

Defines functions print.ddf

Documented in print.ddf

#' Simple pretty printer for distance sampling analyses 
#'
#' Simply prints out summary of the model which was fitted. For more
#' detailed information see \code{\link{summary}}.
#'
#' @param x a \code{ddf} object 
#' @param ... not passed through, just for S3 compatibility.
#' @export
#' @aliases print.ddf
#'
#' @author David L. Miller
#' @export
print.ddf<-function(x, ...){

  cat("\nDistance sampling analysis object\n")
  print(summary(x))
  invisible()
}

Try the mrds package in your browser

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

mrds documentation built on July 9, 2023, 6:06 p.m.