diff --git a/docs/src/fit.md b/docs/src/fit.md index 24e8ee1dc4..a55f191466 100644 --- a/docs/src/fit.md +++ b/docs/src/fit.md @@ -72,7 +72,10 @@ fit_mle(Categorical, k, x, w) fit_mle(Categorical, x) # equivalent to fit_mle(Categorical, max(x), x) fit_mle(Categorical, x, w) ``` +!!! warning + Laplace distribution currently does not support weighted `fit_mle`. + ## Sufficient Statistics For many distributions, estimation can be based on (sum of) sufficient statistics computed from a dataset. To simplify implementation, for such distributions, we implement `suffstats` method instead of `fit_mle` directly: