i9e1
i9e1
Hi all, fitting data to a Poisson distribution does not work as stated in the doc of `fit_mle`. with `v0.25.95` and `v0.25.98` ``` julia> x = [0.3721095631823048, 0.4327034042239485, 0.43291359831536913, 0.445593656578241,...
Dirac
Applied suggestions from Review and rebased on current master. This PR than is just to fix `location, scale, +, *` #1731, #1695
``` julia> d = Dirac(3.5) Dirac{Float64}(value=3.5) julia> location(d) ERROR: MethodError: no method matching location(::Dirac{Float64}) julia> scale(d) ERROR: MethodError: no method matching scale(::Dirac{Float64}) julia> d = Dirac(3.5) Dirac{Float64}(value=3.5) julia> e =...
Since v"1.8.0" its possible to annotate a mutable struct's field with the `const` keyword. If you do, DocStringExtensions `FIELDS`, `TYPEDFIELDS` fail: docstrings are only parsed for mutable fields. Here is...