File: print.stden.R

package info (click to toggle)
r-cran-sparr 2.3-16-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 884 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#' @rdname printsparr
#' @method print stden
#' @export
print.stden <- function(x,...){
  cat("Spatiotemporal Kernel Density Estimate\n\n")
  cat("Bandwidths\n  h =",round(x$h,4),"(spatial)\n  lambda =",round(x$lambda,4),"(temporal)\n\n")
  cat("No. of observations\n ",npoints(x$pp),"\n")
}