hypothesis_testing {FormulR}R 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)

[Package FormulR version 1.0.0 Index]