process_dataset {CBASSED50} | R Documentation |
Experimental Features for CBASS Dataset Analysis
Description
This script contains functions for processing and analyzing CBASS datasets, including fitting dose-response models, calculating effective doses (ED5, ED50, ED95), and plotting results.
Process the dataset by preprocessing, validating, and defining grouping properties.
Usage
process_dataset(cbass_dataset, grouping_properties)
Arguments
cbass_dataset |
A data frame containing the dataset to be processed. |
grouping_properties |
A character vector of column names to be used for grouping. Default: c("Site", "Condition", "Species", "Timepoint"). |
Value
A processed data frame with the grouping property defined.
Examples
# Example dataset
data(cbass_dataset)
# Example grouping properties
grouping_properties <- c("Site", "Condition", "Species", "Timepoint")
# Process the dataset
processed_dataset <- process_dataset(cbass_dataset, grouping_properties)
[Package CBASSED50 version 0.2.0 Index]