extract_boinet_data {boinet}R Documentation

Extract Tidy Data from BOIN-ET Results

Description

Convenience function to extract tidy data frames from boinet results. This is a wrapper for format_boinet_results with tidy output.

Usage

extract_boinet_data(boinet_result)

Arguments

boinet_result

Result object from any boinet function

Value

List containing tidy data frames

Examples

## 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)

[Package boinet version 1.4.0 Index]