File: summary.RSmplext.R

package info (click to toggle)
r-cran-raschsampler 0.8-10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: f90: 401; ansic: 15; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"summary.RSmplext" <-
function(object,...)
{
  cat("\nStatus of extracted object ",deparse(substitute(object)),":\n", sep="")
  cat("\tn =",object$n,"\n")
  cat("\tk =",object$k,"\n")
  cat("\tburn_in =",object$burn_in,"\n")
  cat("\tn_eff =",object$n_eff,"\n")
  cat("\tstep =",object$step,"\n")
  cat("\tseed =",object$seed,"\n")
  cat("\ttfixed =",object$tfixed,"\n")
  cat("\tn_tot =",object$n_tot,"\n")
  cat("\toutvec contains",length(object$outvec),"elements\n\n")
}