We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc596fa commit a15637eCopy full SHA for a15637e
plotting_histogram.py
@@ -0,0 +1,11 @@
1
+import matplotlib.pyplot as plt
2
+import numpy as np
3
+
4
+# Create sample data
5
+x = np.random.normal(170, 10, 250)
6
7
+# Create histogram
8
+plt.hist(x)
9
10
+# Display plot
11
+plt.show()
0 commit comments