https://github.com/bearloga/comparing-groups
Simulation study of statistical methods for comparing groups – examples and informal evaluations of various statistical significance tests for comparing observations generated from different distributions and families
https://github.com/bearloga/comparing-groups
Last synced: 4 months ago
JSON representation
Simulation study of statistical methods for comparing groups – examples and informal evaluations of various statistical significance tests for comparing observations generated from different distributions and families
- Host: GitHub
- URL: https://github.com/bearloga/comparing-groups
- Owner: bearloga
- License: mit
- Created: 2020-09-17T22:38:34.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-09-21T19:32:47.000Z (over 5 years ago)
- Last Synced: 2025-07-06T12:44:02.019Z (12 months ago)
- Language: TeX
- Homepage: https://people.wikimedia.org/~bearloga/notes/comparing-groups/
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
title: "Simulation study of statistical methods for comparing groups"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
Examples and informal evaluations of various statistical significance tests for comparing observations generated from different distributions and families.
```{r repo-info, results='asis'}
repo_info <- data.frame(
status = "work in progress",
content = "[CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)",
code = "[MIT](LICENSE)",
stringsAsFactors = FALSE
)
knitr::kable(repo_info, format = "markdown")
```
## Setup
Installing dependencies in R:
```R
install.packages(c(
"rmarkdown", "tidyverse", "remotes",
"ggdist", "gt", "patchwork"
))
remotes::install_github("rstudio/distill")
```
Knitting the R Markdown source document to an HTML page, which requires a local copy of [Wikipedia Context Cards](https://github.com/joakin/context-cards):
``` bash
# wget https://unpkg.com/context-cards/dist/context-cards.js
$ R -e "rmarkdown::render('index.Rmd')"
```