S3 method for providing confidence intervals for the shorts_model
Source: R/shorts-S3.R
confint.shorts_model.Rd
S3 method for providing confidence intervals for the shorts_model
Usage
# S3 method for class 'shorts_model'
confint(object, ...)
Arguments
- object
shorts_model
object- ...
Forwarded to generic
confint()
function
Examples
if (FALSE) { # \dontrun{
split_distances <- c(10, 20, 30, 40, 50)
split_times <- create_timing_gates_splits(
gates = split_distances,
MSS = 10,
MAC = 9,
FD = 0,
TC = 0,
noise = 0.01
)
# Simple model
simple_model <- model_timing_gates(split_distances, split_times)
confint(simple_model)
} # }