View source: R/DrugFormulation.R
regression_analysis | R Documentation |
This function conducts regression analysis to model relationships between formulation parameters and response variables.
regression_analysis(formulation_data)
formulation_data |
A data frame containing the formulation data. |
A summary of the regression 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)
)
regression_analysis(formulation_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.