Learn R Programming

FormulR (version 1.0.0)

hypothesis_testing: Perform hypothesis testing

Description

This function conducts hypothesis testing to compare means between different formulation groups.

Usage

hypothesis_testing(formulation_data)

Value

The results of the hypothesis testing.

Arguments

formulation_data

A data frame containing the formulation data.

Examples

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

Run the code above in your browser using DataLab