Skip to contents

Draws the non-overlap ratio \(\hat{\tau}(a)\) against the target exposure value a, with a reference line at zero. For a sequential result the curves are colored by time point.

Arguments

object

An hdr_result from check_hdr() or check_hdr_seq().

...

Not used.

Value

A ggplot2::ggplot object.

Examples

set.seed(1)
n <- 300
l <- rnorm(n)
dose <- rnorm(n, mean = l)
df <- data.frame(dose = dose, l = l)
result <- check_hdr(df, dose, l)

autoplot(result)