print.AROC {AROC}R Documentation

Print method for AROC objects

Description

Default print method for objects fitted with AROC.bnp(), AROC.bsp(), AROC.sp(), AROC.kernel(), pooledROC.BB() or pooledROC.emp() functions.

Usage

## S3 method for class 'AROC'
print(x, ...)

Arguments

x

an object of class AROC as produced by AROC.bnp(), AROC.bsp(), AROC.sp(), AROC.kernel(), pooledROC.BB() or pooledROC.emp()

...

further arguments passed to or from other methods. Not yet implemented.

Details

A short summary is printed including: TODO

See Also

AROC.bnp, AROC.bsp, AROC.sp, AROC.kernel, pooledROC.BB or pooledROC.emp.

Examples

library(AROC)
data(psa)
# Select the last measurement
newpsa <- psa[!duplicated(psa$id, fromLast = TRUE),]

# Log-transform the biomarker
newpsa$l_marker1 <- log(newpsa$marker1)

m0 <- AROC.bnp(formula.healthy = l_marker1 ~ f(age, K = 0),
group = "status", tag.healthy = 0, data = newpsa, scale = TRUE,
p = seq(0,1,l=101), compute.lpml = TRUE, compute.WAIC = TRUE,
a = 2, b = 0.5, L = 10, nsim = 5000, nburn = 1000)

m0



[Package AROC version 1.0-4 Index]