Skip to content

GLM glossary term #5047

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@
# myst and panels config
jupyter_execute_notebooks = "off"
myst_heading_anchors = 3
myst_enable_extensions = [
"colon_fence",
]
myst_enable_extensions = ["colon_fence", "deflist", "dollarmath", "amsmath"]
panels_add_bootstrap_css = False

# The reST default role (used for this markup: `text`) to use for all
Expand Down
11 changes: 11 additions & 0 deletions docs/source/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,15 @@ Posterior

- For more on generating and interpreting the posterior samples, see Statistical Rethinking 2nd Edition By Richard McElreath, chapter 3.

Generalized Linear Model
GLM
In a Generalized Linear Model (GLM), we assume the response variable $y_i$ to follow an
exponential family distribution with mean $\mu_i$, which is assumed to be some (often nonlinear)
function of $x_i^T\beta$. They're considered linear because the covariates affect the distribution
of $Y_i$ only through the linear combination $x_i^T\beta$. Some examples of Generalized Linear
Models are: Linear Regression, ANOVA, Logistic Regression and Poisson Regression

:::{note} Do not confuse these with general linear models
:::

:::::