fit_curve_eds {CBASSED50} | R Documentation |
Fit dose-response models and calculate summary statistics for ED5, ED50, and ED95 values.
Description
Fit dose-response models and calculate summary statistics for ED5, ED50, and ED95 values.
Usage
fit_curve_eds(
cbass_dataset,
grouping_properties = c("Site", "Condition", "Species", "Timepoint"),
drm_formula = "Pam_value ~ Temperature"
)
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"). |
drm_formula |
A formula object specifying the dose-response model. Default: "Pam_value ~ Temperature". |
Value
A data frame with summary statistics for ED5, ED50, and ED95 values.
Examples
# Example dataset
data(cbass_dataset)
# Example grouping properties
grouping_properties <- c("Site", "Condition", "Species", "Timepoint")
# Extract the ED5, ED50, and ED95 values as a data frame
fitted_edss_df <- fit_curve_eds(cbass_dataset, grouping_properties)
[Package CBASSED50 version 0.2.0 Index]