Keyboard shortcuts

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

Matplotlib Simple Pie with params

import matplotlib.pyplot as plt

plt.pie(
    x = [ 23, 42, 10, 19 ],
    # explode = [0, 0, 0.1, 0.3],
    # labels = ["failure", "success", "maybe", "what"],
    # colors = ["red",  "green",  "blue", "#A395C1"],
    # shadow = True,
    # radius = 1.3,
)

plt.show()
#plt.savefig('simple_pie_params.png')