This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#10224089 Rafael Erren Eliezer | |
import random as rd | |
import matplotlib.pyplot as plt | |
# Uniform | |
r1 = [rd.uniform(1, 100) for i in range(10000)] | |
plt.hist(r1, bins=100) | |
plt.title("Uniform Distribution") | |
plt.show() |