rsp_y {admiralonco} | R Documentation |
Pre-Defined Response Event Objects
Description
These pre-defined event()
and event_joined()
objects can be used as input
to admiral::derive_extreme_event()
.
Usage
rsp_y
no_data_n
cb_y
bor_cr
bor_pr
bor_sd
bor_non_crpd
bor_pd
bor_ne
no_data_missing
crsp_y_cr
crsp_y_pr
cbor_cr
cbor_pr
Details
To see the definition of the various objects simply print the object in the
R console, e.g. bor_sd
. For details of how to use these objects
please refer to admiral::derive_extreme_event()
.
It is assumed that dataset_name = "ovr"
refers to the dataset of the only
overall response assessments at each visit which should be considered for the
parameter derivations. For example the dataset should include only
post-baseline assessments up to first PD and before start of anti-cancer
therapy.
See Also
admiral::derive_extreme_event()
, admiral::event()
, admiral::event_joined()
Examples
# This shows the definition of all pre-defined `event` objects that ship
# with {admiralonco}
exports <- sort(getNamespaceExports("admiralonco"))
for (obj_name in exports) {
obj <- getExportedValue("admiralonco", obj_name)
if (inherits(obj, "event_def")) {
cat("\n", obj_name, ":\n", sep = "")
print(obj, indent = 2)
}
}
[Package admiralonco version 1.1.0 Index]