Matplotlib Simple Pie
import matplotlib.pyplot as plt
plt.pie([ 23, 42, 10, 19 ])
plt.show()
#plt.savefig('simple_pie.png')
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
import matplotlib.pyplot as plt
plt.pie([ 23, 42, 10, 19 ])
plt.show()
#plt.savefig('simple_pie.png')