We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a95dd71 commit 66fba38Copy full SHA for 66fba38
pymc/distributions/censored.py
@@ -53,6 +53,15 @@ class Censored(SymbolicDistribution):
53
upper: float or None
54
Upper (right) censoring point. If `None`, the distribution will not be right censored.
55
56
+ Warnings
57
+ --------
58
+ Continuous censored distributions should only be used as likelihoods.
59
+ Continuous censored distributions are a form of discrete-continuous mixture
60
+ and as such cannot be sampled properly without a custom step sampler.
61
+ If you wish to sample such a distribution, you can add the latent uncensored
62
+ distribution to the model and then wrap it in a :class:`~pymc.Deterministic`
63
+ :func:`~pymc.math.clip`.
64
+
65
66
Examples
67
--------
0 commit comments