Inverse Transform Sampling

This notebook will conceptualize how inverse transform sampling works

[2]:
import numpy as np
from matplotlib import pyplot as plt
import numpy.random as ra

%matplotlib inline

Below is a spectrum which follows an almost bell-curve type distribution (anyway, the specific type of distribution is not important here).

[118]:
spectrum = [[1, 2, 3, 4, 5, 6],[2000, 4040, 6500, 6000, 4020, 2070]]
energies = np.array(spectrum[0])
fluxes = np.array(spectrum[1])
spectrum
[118]:
[[1, 2, 3, 4, 5, 6], [2000, 4040, 6500, 6000, 4020, 2070]]

Below, first we compute probabilities of flux. Afterwards, we compute the cumulative probability.

[119]:
prob = fluxes/float(sum(fluxes))
cum_prob = np.cumsum(prob)
cum_prob
[119]:
array([ 0.08120179,  0.2452294 ,  0.5091352 ,  0.75274056,  0.91595615,  1.        ])

We draw ten thousand numbers from uniform random distribution.

[128]:
N = 10000
R = ra.uniform(0, 1, N)
R[1:10]
[128]:
array([ 0.49834338,  0.31993222,  0.35882619,  0.15837646,  0.22595417,
        0.85575223,  0.85203039,  0.78380252,  0.04170078])

We assign energies to events corresponding to the random number drawn.

Note: The command below finds bin interval using a single command. I am not sure though that it’s very readble. Would we want to split that in multiple lines and maybe use explicit loops to make it more readable? Or is it fine as it is? Comments?

[129]:
gen_energies = [int(energies[np.argwhere(cum_prob == min(cum_prob[(cum_prob - r) > 0]))]) for r in R]
gen_energies[1:10]
[129]:
[3, 3, 3, 2, 2, 5, 5, 5, 1]

Histogram energies to get shape approximation.

[130]:
gen_energies = ((np.array(gen_energies) - 1) / 1).astype(int)
times = np.arange(1, 6, 1)
lc = np.bincount(gen_energies, minlength=len(times))
lc
[130]:
array([ 825, 1652, 2626, 2466, 1589,  842], dtype=int64)
[131]:
plot1, = plt.plot(lc/float(sum(lc)), 'r--', label='Assigned energies')
plot2, = plt.plot(prob,'g',label='Original Spectrum')
plt.xlabel('Energies')
plt.ylabel('Probability')
plt.legend(handles=[plot1,plot2])
plt.show()
../../../_images/notebooks_Simulator_Concepts_Inverse_Transform_Sampling_12_0.png