Materials for a 1.5-2 day meta-analysis workshop built with Quarto.
This repository contains a comprehensive Quarto book covering meta-analytic methods, from basic concepts to advanced topics including:
- Introduction to meta-analysis
- Calculating and interpreting effect sizes
- Effect size assumptions
- Fixed-effect vs. random-effects models
- Heterogeneity and nuisance heterogeneity
- Meta-regression
- Multi-level models
- Complex non-independence
- Phylogenetic meta-analysis
- Publication bias
The book is published at: https://<username>.github.io/meta-analysis_workshop/
install.packages(c(
"knitr", "rmarkdown", "metafor", "flextable",
"tidyverse", "orchaRd", "pander", "mathjaxr",
"equatags", "vembedr", "bookdown"
))To preview the book locally:
quarto previewTo render the complete book:
quarto renderThe rendered book will be in the _book/ directory.
The book is automatically deployed to GitHub Pages via GitHub Actions whenever changes are pushed to the main/master branch.
- Go to your repository Settings
- Navigate to Pages (under "Code and automation")
- Under "Build and deployment":
- Source: Select "GitHub Actions"
- Push changes to trigger the workflow
The site will be available at https://<username>.github.io/<repository-name>/
*.qmd- Quarto markdown files for each chapter_quarto.yml- Quarto book configurationindex.qmd- Book landing page.github/workflows/publish.yml- GitHub Actions workflow for deploymentbib/- Bibliography files (if present)
To add or modify content:
- Edit the relevant
.qmdfile - Preview changes locally with
quarto preview - Commit and push to trigger automatic deployment
Materials for meta-analysis workshop