Skip to content
Snippets Groups Projects

Resolve "CDF plots with priors show the PDF"

Merged Gregory Ashton requested to merge 382-cdf-plots-with-priors-show-the-pdf into master
All threads resolved!
Files
2
+ 8
0
@@ -524,6 +524,14 @@ class Prior(object):
"""
return np.nan
def cdf(self, val):
""" Generic method to calculate CDF, can be overwritten in subclass """
x = np.linspace(self.minimum, self.maximum, 1000)
pdf = self.prob(x)
cdf = cumtrapz(pdf, x, initial=0)
interp = interp1d(x, cdf, assume_sorted=True, fill_value="extrapolate")
return interp(val)
def ln_prob(self, val):
"""Return the prior ln probability of val, this should be overwritten
Loading