popower {Hmisc} | R Documentation |
popower
computes the power for a two-tailed two sample comparison
of ordinal outcomes under the proportional odds ordinal logistic
model. The power is the same as that of the Wilcoxon test but with
ties handled properly. posamsize
computes the total sample size
needed to achieve a given power. Both functions compute the efficiency
of the design compared with a design in which the response variable
is continuous. print
methods exist for both functions. Any of the
input arguments may be vectors, in which case a vector of powers or
sample sizes is returned. These functions use the methods of
Whitehead (1993).
popower(p, odds.ratio, n, n1, n2, alpha=0.05) ## S3 method for class 'popower' print(x, ...) posamsize(p, odds.ratio, fraction=.5, alpha=0.05, power=0.8) ## S3 method for class 'posamsize' print(x, ...)
p |
a vector of marginal cell probabilities which must add up to one.
The |
odds.ratio |
the odds ratio to be able to detect. It doesn't matter which group is in the numerator. |
n |
total sample size for |
n1 |
for |
n2 |
for |
alpha |
type I error |
x |
an object created by |
fraction |
for |
power |
for |
... |
unused |
a list containing power
and eff
(relative efficiency) for popower
,
or containing n
and eff
for posamsize
.
Frank Harrell
Department of Biostatistics
Vanderbilt University School of Medicine
f.harrell@vanderbilt.edu
Whitehead J (1993): Sample size calculations for ordered categorical data. Stat in Med 12:2257–2271.
Julious SA, Campbell MJ (1996): Letter to the Editor. Stat in Med 15: 1065–1066. Shows accuracy of formula for binary response case.
#For a study of back pain (none, mild, moderate, severe) here are the #expected proportions (averaged over 2 treatments) that will be in #each of the 4 categories: p <- c(.1,.2,.4,.3) popower(p, 1.2, 1000) # OR=1.2, total n=1000 posamsize(p, 1.2) popower(p, 1.2, 3148)