View source: R/DrugFormulation.R
hypothesis_testing | R Documentation |
This function conducts hypothesis testing to compare means between different formulation groups.
hypothesis_testing(formulation_data)
formulation_data |
A data frame containing the formulation data. |
The results of the hypothesis testing.
formulation_data <- data.frame(
Formulation_Type = sample(c("Type A", "Type B"), 100, replace = TRUE),
Drug_Release = rnorm(100, mean = 50, sd = 10)
)
hypothesis_testing(formulation_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.