Nothing
add_point_to_graph <- function(
graph,
fit,
name = "est.incidence",
point_data =
tibble(
x = fit$estimate %>% exp(),
y = log_likelihood(.data$x, ...),
label = "est.incidence"
),
...) {
graph <-
graph +
ggplot2::geom_point(
data = point_data,
ggplot2::aes(x = .data$x, y = .data$y, col = .data$label)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.