labelBasedOnCutoff: Label groups based on a given cutoff

Description Usage Arguments Value See Also Examples

Description

Label groups based on a given cutoff

Usage

1
labelBasedOnCutoff(data, cutoff, label = NULL, gte = TRUE)

Arguments

data

Numeric: test data

cutoff

Numeric: test cutoff

label

Character: label to prefix group names

gte

Boolean: test using greater than or equal than cutoff (TRUE) or less than or equal than cutoff (FALSE)?

Value

Labelled groups

See Also

Other functions to analyse survival: assignValuePerSubject(), getAttributesTime(), optimalSurvivalCutoff(), plotSurvivalCurves(), plotSurvivalPvaluesByCutoff(), processSurvTerms(), survdiffTerms(), survfit.survTerms(), testSurvival()

Examples

1
2
3
4
5
6
labelBasedOnCutoff(data=c(1, 0, 0, 1, 0, 1), cutoff=0.5)

labelBasedOnCutoff(data=c(1, 0, 0, 1, 0, 1), cutoff=0.5, "Ratio")

# Use "greater than" instead of "greater than or equal to"
labelBasedOnCutoff(data=c(1, 0, 0, 0.5, 0, 1), cutoff=0.5, gte=FALSE)

psichomics documentation built on Nov. 8, 2020, 5:44 p.m.