NextBestOrdinal is the class for applying a standard NextBest rule to
the results of an ordinal CRM trial.
Slots
grade(
integer)
the toxicity grade to which theruleshould be applied.rule(
NextBest)
the standardNextBestrule to be applied
Examples
NextBestOrdinal(
grade = 1L,
rule = NextBestMTD(
0.25,
function(mtd_samples) {
quantile(mtd_samples, probs = 0.25)
}
)
)
#> An object of class "NextBestOrdinal"
#> Slot "grade":
#> [1] 1
#>
#> Slot "rule":
#> An object of class "NextBestMTD"
#> Slot "target":
#> [1] 0.25
#>
#> Slot "derive":
#> function (mtd_samples)
#> {
#> quantile(mtd_samples, probs = 0.25)
#> }
#> <environment: 0x555efebc5c68>
#>
#>
