File: print.wald.R

package info (click to toggle)
r-cran-erm 1.0-6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,952 kB
  • sloc: f90: 401; ansic: 103; makefile: 8
file content (13 lines) | stat: -rwxr-xr-x 371 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
`print.wald` <-
function(x,...)
#print method for objects of class "wald" (from waldtest)
{
   #if (!is.null(x$betalab)) {
   #  cat("Warning Message: Item",x$betalab[1],"was not tested due to sum-0 restriction.\n")
   #}
   cat("\nWald test on item level (z-values):\n\n")
   print(round(x$coef.table,3))
   cat("\n")
   invisible(round(x$coef.table,3))
}