Sample size, power or minimum detectable prevalence ratio or odds ratio for a cross-sectional study
Sample size, power or minimum detectable prevalence ratio or odds ratio for a cross-sectional study.
epi.ssxsectn(pdexp1, pdexp0, pexp = NA, n = NA, power = 0.80, r = 1, N, design = 1, sided.test = 2, finite.correction = FALSE, nfractional = FALSE, conf.level = 0.95)
pdexp1 |
the expected prevalence of the outcome in the exposed group (0 to 1). |
pdexp0 |
the expected prevalence of the outcome in the non-exposed group (0 to 1). |
pexp |
the expected prevalence of exposure to the hypothesised risk factor in the population (0 to 1). |
n |
scalar, defining the total number of subjects in the study (i.e. the number in both the exposed and unexposed groups). |
power |
scalar, the required study power. |
r |
scalar, the number in the exposed group divided by the number in the unexposed group. |
N |
scalar, the estimated number of individuals in the population. |
design |
scalar, the estimated design effect. |
sided.test |
use a one- or two-sided test? Use a two-sided test if you wish to evaluate whether or not the outcome incidence risk in the exposed group is greater than or less than the outcome incidence risk in the unexposed group. Use a one-sided test to evaluate whether or not the outcome incidence risk in the exposed group is greater than the outcome incidence risk in the unexposed group. |
finite.correction |
logical, apply a finite correction factor? |
nfractional |
logical, return fractional sample size. |
conf.level |
scalar, defining the level of confidence in the computed result. |
The methodology in this function follows the approach described in Chapter 8 of Woodward (2005), pp. 381 - 426.
A list containing the following:
n.total |
the total number of subjects required for the specified level of confidence and power, respecting the requirement for |
n.exp1 |
the total number of subjects in the exposed (treatment) group for the specified level of confidence and power, respecting the requirement for |
n.exp0 |
the total number of subjects in the non-exposed (control) group for the specified level of confidence and power, respecting the requirement for |
power |
the power of the study given the number of study subjects, the expected effect size and level of confidence. |
pr |
the prevalence of the outcome in the exposed group divided by the prevalence of the outcome in the unexposed group (the prevalence ratio). |
or |
the odds of the outcome in the exposed group divided by the odds of the outcome in the unexposed group (the odds ratio). |
The power of a study is its ability to demonstrate the presence of an association, given that an association actually exists.
Values need to be entered for pdexp0
, pexp
, n
, and power
to return a value for the prevalence ratio pr
and odds ratio or
. In this situation, the lower value of pr
represents the maximum detectable prevalence ratio that is less than 1; the upper value of pr
represents the minimum detectable prevalence ratio greater than 1. A value for pexp
doesn't need to be entered if you want to calculate sample size or study power.
When calculating study power or minimum detectable prevalence risk ratio when finite.correction = TRUE
the function takes the values of n
and N
entered by the user and back-calculates a value of n
assuming an infinite population. Values for power
, pr
and or
are then returned, assuming the back-calculated value of n
is equivalent to the value of n
entered by the user.
See the documentation for epi.sscohortc
for an example using the design
facility implemented in this function.
Kelsey JL, Thompson WD, Evans AS (1986). Methods in Observational Epidemiology. Oxford University Press, London, pp. 254 - 284.
Mittleman MA (1995). Estimation of exposure prevalence in a population at risk using data from cases and an external estimate of the relative risk. Epidemiology 6: 551 - 553.
Woodward M (2005). Epidemiology Study Design and Data Analysis. Chapman & Hall/CRC, New York, pp. 381 - 426.
## EXAMPLE 1: ## A cross-sectional study is to be carried out to quantify the association ## between farm management type (intensive, extensive) and evidence of ## Q fever in dairy goat herds. The investigators would like to be 0.80 sure ## of being able to detect when the risk ratio of Q fever is 2.0 for ## intensively managed herds, using a 0.05 significance test. Previous evidence ## suggests that the prevalence of Q fever in extensively managed dairy goat ## herds is 5 per 100 herds at risk and the prevalence of intensively managed ## herds in the population (the prevalence of exposure) is around 0.20. ## Assuming equal numbers of intensively managed and extensively managed ## herds will be sampled, how many herds need to be enrolled into the study? ## You estimate that there are around 60 dairy goat herds in your study area. pdexp1 = 2.0 * (5 / 100); pdexp0 = 5 / 100 epi.ssxsectn(pdexp1 = pdexp1, pdexp0 = pdexp0, pexp = 0.20, n = NA, power = 0.80, r = 1, N = 60, design = 1, sided.test = 2, finite.correction = TRUE, nfractional = FALSE, conf.level = 0.95) ## A total of 58 of the 60 herds need to be enrolled into the study ## (29 intensively managed and 29 extensively managed herds). ## EXAMPLE 2: ## Say, for example, we're only able to enrol 45 herds into the study ## described above. What is the minimum and maximum detectable prevalence ## ratio and minimum and maximum detectable odds ratio? pdexp0 = 5 / 100 epi.ssxsectn(pdexp1 = NA, pdexp0 = pdexp0, pexp = 0.20, n = 45, power = 0.80, r = 1, N = 60, design = 1, sided.test = 2, finite.correction = TRUE, nfractional = FALSE, conf.level = 0.95) ## The minimum detectable prevalence ratio >1 is 3.64. The maximum detectable ## prevalence ratio <1 is 0. ## The minimum detectable odds ratio >1 is 4.65. The maximum detectable ## odds ratio <1 is 0.
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.