Sampling
Sampling
0.8778660335481027
0.6273669409016372
0.1916048679612935
0.09766200492928401
0.6482876396284325
0.7252315169394271
0.38240498644322407
0.6658533396231734
0.25690347700919525
0.3610061946649761
Uniform Distribution
In [3]: for i in range(10):
print(random.randint(1, 100))
41
39
7
9
89
75
28
40
8
49
In [4]: counts = np.zeros(100)
fig, axes = plt.subplots(2, 3, figsize=(15, 8), sharex=True)
axes = axes.reshape(6)