-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpdf.py
34 lines (25 loc) · 872 Bytes
/
pdf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import numpy as np
import matplotlib.pyplot as plt
from scipy.interpolate import InterpolatedUnivariateSpline
class ProbabilityDensityDistribution(InterpolatedUnivariateSpline):
def __init__(self, x, y):
spline = InterpolatedUnivariateSpline(x, y)
norm = spline.integral(x.min(), x.max())
self._x = x
self._y = y / norm
super().__init__(self._x, self._y)
def plot(self):
plt.plot(self._x, self._y, 'o')
x = np.linspace(self._x.min(), self._x.max(), 250)
plt.plot(x, self(x))
def normalization(self):
return self.integral(self._x.min(), self._x.max())
if __name__ == '__main__':
x = np.linspace(0., 1., 4)
y = np.exp(x)
pdf = ProbabilityDensityDistribution(x, y)
x0 = 0.5
print(np.exp(x0), pdf(x0))
print(pdf.normalization())
pdf.plot()
plt.show()