View source: R/DrugFormulation.R
anova_analysis | R Documentation |
This function conducts analysis of variance (ANOVA) to assess the impact of formulation parameters on key response variables.
anova_analysis(formulation_data)
formulation_data |
A data frame containing the formulation data. |
A summary of the ANOVA analysis results.
formulation_data <- data.frame(
Excipient_Concentration = runif(100, min = 0, max = 1),
Drug_Release = rnorm(100, mean = 50, sd = 10),
Particle_Size = rnorm(100, mean = 100, sd = 20)
)
anova_analysis(formulation_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.