stepwedgepower

stepwedgepower provides a general simulation-based workflow for stepped-wedge cluster randomized trials with aggregated binary outcomes. Version 0.1.1 adds:

Project background

This package is based on a PhD biostatistics rotation project on statistical methods for stepped wedge clinical trial designs. According to the rotation evaluation, the project involved:

The software was also used to provide sample size calculations for a study under development. In the permission email shown in the screenshots, Prof. Florin Vaida approved publishing the software to GitHub.

What was changed from the original script

The original file mixed together:

  1. raw CSV imports,
  2. one-off data cleaning,
  3. model fitting,
  4. ad hoc probability extraction, and
  5. repeated simulation loops.

This package reorganizes those steps into exported functions:

Installation

# install.packages("remotes")
remotes::install_github("AmandaLinLi/stepwedgepower")

Minimal workflow

library(stepwedgepower)

power_out <- estimate_power(
  n_simulations = 1000,
  treatment_or = 1.50,
  n_clusters_per_sequence = c(10, 10, 10, 10),
  sequence_names = paste0("Sequence ", 1:4),
  baseline_probs = c(0.05, 0.05, 0.05, 0.05),
  icc = 0.05,
  n_per_cluster_period = 20,
  seed = 2026
)

power_out
power_out$power
power_out$mcse
c(power_out$conf_low, power_out$conf_high)

Version 0.1.0 argument names remain available with deprecation warnings.

Example data

A small synthetic dataset is included for quick testing:

ex_dat <- read_example_physician_data()
head(ex_dat)

Repository structure

stepwedgepower/
  DESCRIPTION
  NAMESPACE
  R/
  man/
  inst/extdata/
  inst/scripts/
  tests/
  .github/workflows/

Notes

Suggested next steps before publishing

  1. Open the package locally in RStudio.
  2. Run devtools::document().
  3. Run devtools::check().
  4. Replace YOUR_GITHUB_USERNAME in README.md.
  5. Replace the maintainer email placeholder in DESCRIPTION.
  6. Commit and push to GitHub.