Death times (in days) from a study to determine the efficacy of BNCT in treating therapeutically refractory F98 glioma.
Usage
data("bnct")
Arguments
Format
A data frame with 30 observations on the following 3 variables.
trt
a numeric vector: Treatment (1=untreated, 2=radiated, 3=radiated + BPA)
time
a numeric vector: Death time or on-study time, days
death
a numeric vector: Death indicator (1=dead, 0=alive)
Details
A right censored data from a study performed to determine the efficacy of boron neutron capture therapy (BNCT) in treating the therapeutically refractory F98 glioma, using boronophenylalanine (BPA) as the capture agent. F98 glioma cells were implanted into the brains of rats. Three groups of rats each with 10 rats were studied. One group went untreated, another was treated only with radiation, and the third group received radiation plus an appropriate concentration of BPA.
# NOT RUN {data(bnct)
str(bnct)
with(bnct, mcpqdci(y = time, f = trt, event = death, TRUE))
with(bnct, mcpqrci(y = time, f = trt, event = death, TRUE))
# }