Calculate the probability of success.
Calculate the probability of success for an augbin_2t_1a_fit object.
prob_success(x, ...)# S3 method for augbin_2t_1a_fit
prob_success(
x,
y1_lower = -Inf,
y1_upper = Inf,
y2_lower = -Inf,
y2_upper = log(0.7),
probs = c(0.025, 0.975),
newdata = NULL,
...
)
Object of class tibble
an R object of class "augbin_fit"
arguments passed to other methods
numeric, minimum threshold to constitute success, scrutinising the log of the tumour size ratio comparing time 1 to baseline. Defaults to negative infinity.
numeric, maximum threshold to constitute success, scrutinising the log of the tumour size ratio comparing time 1 to baseline. Defaults to positive infinity.
numeric, minimum threshold to constitute success, scrutinising the log of the tumour size ratio comparing time 2 to baseline.
numeric, maximum threshold to constitute success, scrutinising the log of the tumour size ratio comparing time 2 to baseline. Defaults to log(0.7).
pair of probabilities to use to calculate the credible interval for the probability of success.
data for which to infer the probability of success.
A dataframe-like object with baseline tumour sizes in first column, and first
and second post-baseline tumour sizes in columns 2 and 3. Omitted by default.
When omitted, newdata is set to be the fit$tumour_size
.
if (FALSE) {
fit <- stan_augbin_demo()
prob_success(fit, y2_upper = log(0.7))
}
Run the code above in your browser using DataLab