@@ -748,9 +748,11 @@ Noise distributions
748748
749749Denote by :math: `m` the measured value,
750750:math: `y:=\text {observableFormula}` the simulated value
751- (the location parameter of the noise distribution),
752- and :math: `\sigma ` the scale parameter of the noise distribution
753- as given via the ``noiseFormula `` field (the standard deviation of a normal,
751+ (for continuous noise distributions,
752+ the location parameter of the noise distribution),
753+ and :math: `\sigma ` the distribution parameter as given via the ``noiseFormula ``
754+ field (the scale parameter of the continuous noise distributions,
755+ i.e. the standard deviation of a normal,
754756or the scale parameter of a Laplace model).
755757Then we have the following effective noise distributions:
756758
@@ -779,6 +781,25 @@ Then we have the following effective noise distributions:
779781 - ``log-laplace ``
780782 - .. math::
781783 \pi(m|y,\sigma) = \frac{1}{2\sigma m}\exp\left(-\frac{|\log m - \log y|}{\sigma}\right)
784+ * - Poisson distribution
785+ - ``poisson ``
786+ - .. math::
787+ \pi(m|\lambda) = \frac{\lambda^m\exp(-\lambda)}{m!}
788+ where the rate :math:`\lambda` is given via ``observableFormula``.
789+ ``noiseFormula`` must be empty in this case.
790+ * - Binomial distribution
791+ - ``binomial ``
792+ - .. math::
793+ \pi(m|n,p) = \binom{n}{m}p^m(1-p)^{n-m}
794+ where :math:`n` is the number of trials given via ``observableFormula``
795+ and :math:`p` the probability of success given via ``noiseFormula``.
796+ * - Negative binomial distribution
797+ - ``negative-binomial ``
798+ - .. math::
799+ \pi(m|r,p) = \binom{m+r-1}{m}p^r(1-p)^m
800+ where :math:`r` is the number of successes given via ``observableFormula``
801+ and :math:`p` the probability of success given via ``noiseFormula``.
802+
782803
783804The distributions above are for a single data point.
784805For a collection :math: `D=\{ m_i\} _i` of data points and corresponding
0 commit comments