R/print.summary.lengths.R

print.summary.lengths <-
function (x, ...) {
  cat("Direction (")
  cat(x$direction, sep = ", ")
  cat(")\n")
  n <- length(x)
  nms <- names(x)
  for (i in 1:n) {
    cat("Stratum lengths of category \"", nms[i], "\"\n", sep = "")
    print(x[[i]], ...)
    if (i != n) cat("\n")
  }
  invisible(x)
}

Try the spMC package in your browser

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

spMC documentation built on May 3, 2023, 9:13 a.m.