Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seananderson/glmm-course
Workshop exercises on regression, GLMs, mixed-effects models, and GLMMs in R
https://github.com/seananderson/glmm-course
Last synced: 5 days ago
JSON representation
Workshop exercises on regression, GLMs, mixed-effects models, and GLMMs in R
- Host: GitHub
- URL: https://github.com/seananderson/glmm-course
- Owner: seananderson
- Created: 2016-09-13T00:55:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-09-06T22:42:48.000Z (about 2 years ago)
- Last Synced: 2024-10-12T01:18:32.191Z (27 days ago)
- Language: R
- Homepage:
- Size: 3.8 MB
- Stars: 174
- Watchers: 14
- Forks: 66
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Generalized Linear Mixed-Effects Modeling in R
This two-day workshop will focus on generalized linear mixed-effects models (GLMMs; hierarchical/multilevel models) using the R programming language. We will concentrate on practical elements of GLMMs such as choosing a modeling approach, the process of building up and understanding a model, model checking, and plotting and interpreting model output. We will focus mainly on linear mixed-effects models, but we will also cover generalized linear mixed-effect models, variance and correlation structures, and zero-inflated models.
By the end of the two-day workshop, you will be able to develop models using your own data and troubleshoot the main problems that arise in the process. You will also become familiar with a number of R packages that can fit GLMMs (e.g. lme4, nlme, glmmTMB) and R packages to help manipulate and plot your data and models (e.g. dplyr, ggplot2, broom).
Prior to taking this workshop, you should be reasonably comfortable with R and linear regression, and ideally have some experience with GLMs (e.g. logistic regression). Some background with dplyr and ggplot2 would be helpful.
## Downloading these notes/exercises
Click "Clone or download", "Download ZIP".
## Generating the exercises
Open the file `glmm-course.Rproj` by double-clicking on it. Run the following:
``` r
source("99-make.R")
```Then look in the folder `exercises`. Lines with `# exercise` will be left blank in this version.