R/print.dsm.var.R

Defines functions print.dsm.var

Documented in print.dsm.var

#' Print a description of a density surface model variance object
#'
#' This method only provides a short summary, use the
#' [`summary.dsm.var`][summary.dsm.var] method for information.
#'
#' @param x a `dsm` variance object
#' @param \dots unspecified and unused arguments for S3 consistency
#' @return `NULL`
#' @export
#' @author David L. Miller
#' @seealso [`summary.dsm.var`][summary.dsm.var]
#' @keywords utility
print.dsm.var <- function(x, ...){
  print(summary(x))
}
DistanceDevelopment/dsm documentation built on Dec. 2, 2022, 6:08 a.m.