print.rocci: Print 'rocci' Object

Description Usage Arguments See Also Examples

View source: R/print_rocci.R

Description

Print rocci Object

Usage

1
2
## S3 method for class 'rocci'
print(x, ... = NULL)

Arguments

x

An object of class "rocci", returned by ciROC function.

...

NULL. Used for S3 generic/method consistency.

See Also

ciROC, rocit

Examples

1
2
3
4
5
6
7
8
9
data("Diabetes")
roc_empirical <- rocit(score = Diabetes$chol, class = Diabetes$dtest,
                       negref = "-") # default method empirical
roc_binormal <- rocit(score = Diabetes$chol, class = Diabetes$dtest,
                     negref = "-", method = "bin")

# ---------------------
print(ciROC(roc_empirical))
print(ciROC(roc_binormal))

ROCit documentation built on July 1, 2020, 11:28 p.m.