Skip to content
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

Adding description to Gumbel Distribution #6810

Merged
merged 8 commits into from
Aug 13, 2023
6 changes: 5 additions & 1 deletion pymc/distributions/continuous.py
Original file line number Diff line number Diff line change
Expand Up @@ -3121,7 +3121,11 @@ def triangular_default_transform(op, rv):

class Gumbel(Continuous):
r"""
Univariate Gumbel log-likelihood.
Univariate right-skewed Gumbel log-likelihood.

This distribution is typically used for modeling maximum (or extreme) values.
Those looking to find the extreme minimum provided by the left-skewed Gumbel should
invert the sign to all x and mu values.
larryshamalama marked this conversation as resolved.
Show resolved Hide resolved

The pdf of this distribution is

Expand Down
Loading