Python Matplotlib

Matplotlib Pie Charts

Pie charts

Matplotlib Pie Charts

You can create pie charts with the pie() function.

Pie Chart

import matplotlib.pyplot as plt

y = [35, 25, 25, 15]

plt.pie(y)
plt.show()