Student's t test
This class implements Student's t-test for superiority and non-inferiority
tests.
A trial with continuous outcomes of the two groups T
and C
is assumed.
If alternative == "greater"
the null hypothesis for the
mean difference
Δ = μT - μC
is
H0: Δ ≤ -δNI vs. H1: Δ > -δNI.
alternative=="smaller"
The function setupStudent
creates an object of class
Student
that can be used for sample size recalculation.
setupStudent( alpha, beta, r = 1, delta, delta_NI = 0, alternative = c("greater", "smaller"), n_max = Inf, ... )
alpha |
One-sided type I error rate. |
beta |
Type II error rate. |
r |
Allocation ratio between experimental and control group. |
delta |
Difference of effect size between alternative and null hypothesis. |
delta_NI |
Non-inferiority margin. |
alternative |
Does the alternative hypothesis contain greater
( |
n_max |
Maximal overall sample size. If the recalculated sample size
is greater than |
... |
Further optional arguments. |
The notation is based on the paper of Lu (2019): Distribution of the two-sample t-test statistic following blinded sample size re-estimation. Pharmaceutical Statistics 15: 208-215.
The following methods are available for this class:
toer
, pow
, n_dist
,
adjusted_alpha
, and n_fix
.
Check the design specific documentation for details.
An object of class Student
.
d <- setupStudent(alpha = .025, beta = .2, r = 1, delta = 3.5, delta_NI = 0, alternative = "greater", n_max = 156)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.