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.1,
)
#plt.show()
plt.savefig('simple_pie_params.png')
