Learn R Programming

FormulR (version 1.0.0)

anova_analysis: Perform ANOVA analysis

Description

This function conducts analysis of variance (ANOVA) to assess the impact of formulation parameters on key response variables.

Usage

anova_analysis(formulation_data)

Value

A summary of the ANOVA analysis results.

Arguments

formulation_data

A data frame containing the formulation data.

Examples

Run this code
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)

Run the code above in your browser using DataLab