R/print.R

Defines functions print.sac print.multiadm print.adm

print.adm = function(x, ...){
  
  #'
  #' @export
  #' @noRd
  
  cat("age-depth model")
  return(invisible())
}

print.multiadm = function(x, ...){
  
  #'
  #' @export
  #' @noRd
  
  cat("Collection of age-depth models")
  return(invisible())
}

print.sac = function(x, ...){
  #' @export
  #' @noRd
  cat("sediment accumulation curve")
  return(invisible())
}

Try the admtools package in your browser

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

admtools documentation built on Oct. 4, 2024, 1:09 a.m.