hypothesis_testing: Perform hypothesis testing

View source: R/DrugFormulation.R

hypothesis_testingR Documentation

Perform hypothesis testing

Description

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

Usage

hypothesis_testing(formulation_data)

Arguments

formulation_data

A data frame containing the formulation data.

Value

The results of the hypothesis testing.

Examples

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)

FormulR documentation built on June 22, 2024, 7:36 p.m.