R/summary.SSN.R

Defines functions summary.SSN

Documented in summary.SSN

#' @title Summarize an SSN object
#'
#' @description Summarize data found in an SSN object.
#'
#' @param object An SSN object.
#' @param ... Other arguments. Not used (needed for generic consistency).
#'
#' @details \code{summary.SSN()} creates a summary of a SSN object
#'   intended to be printed using \code{print()}. This summary
#'   contains information about the number of observed and prediction
#'   locations, as well as the column names found in their respective
#'   sf data.frames.
#'
#' @return A list with several fitted model quantities used to create
#'   informative summaries when printing.
#'
#' @name summary.SSN
#' @method summary SSN
#' @export
summary.SSN <- function(object, ...) {
  print(object)
}

Try the SSN2 package in your browser

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

SSN2 documentation built on May 29, 2024, 4:41 a.m.