--- title: "Simulation studies" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Simulation studies} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set(collapse = TRUE, comment = "#>") ``` ```{r setup} library(logcumulant) ``` The package includes utilities to reproduce the size and power studies. They are Monte Carlo intensive; the examples below use small replication counts for speed. ## Empirical size Under a true null, a well-calibrated test rejects at approximately the nominal level. The asymptotic reference over-rejects, while the bootstrap restores size. ```{r, eval = FALSE} size_study(sample_sizes = c(30, 50, 100, 200), Nsim = 1000) ``` ## Empirical power Power against a set of alternatives, with optional size-correction for a fair comparison: ```{r, eval = FALSE} power_study(n = 100, Nsim = 1000) ``` ## Reproducing the figures The complete set of diagrams in the accompanying paper can be regenerated with the bundled script: ```{r, eval = FALSE} # from the package source directory source("reproduce_all_figures.R") ```