We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c8611 commit 45e3f13Copy full SHA for 45e3f13
Data Visualization/Pie Chart Plotting/program.py
@@ -0,0 +1,7 @@
1
+import matplotlib.pyplot as plt
2
+import numpy as np
3
+
4
+y = np.array([35, 25, 25, 15])
5
6
+plt.pie(y)
7
+plt.show()
0 commit comments