File: print.LR.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 (12 lines) | stat: -rwxr-xr-x 264 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
`print.LR` <-
function(x,...)
{
#print method for object of class "LR" (LRtest)
  cat("\n")
  cat("Andersen LR-test: \n")
  cat("LR-value:", round(x$LR,3),"\n")
  cat("Chi-square df:",x$df,"\n")
  cat("p-value: ",round(x$pvalue,3),"\n")
  cat("\n")
}