View source: R/result_formatting.R
extract_boinet_data | R Documentation |
Convenience function to extract tidy data frames from boinet results. This is a wrapper for format_boinet_results with tidy output.
extract_boinet_data(boinet_result)
boinet_result |
Result object from any boinet function |
List containing tidy data frames
## Not run:
result <- gboinet(...)
tidy_data <- extract_boinet_data(result)
# Use tidy data for custom analysis
library(ggplot2)
tidy_data$operating_characteristics |>
ggplot(aes(x = dose_level, y = selection_prob)) +
geom_col()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.