for i in range(1000):
label = 'M', 'F'
sizes = [15, 30]
explode = (0, 0.1)
fig1, ax1 = plt.subplots()
ax1.pie(sizes, explode=explode, labels=label, autopct='%1.1f%%',
shadow=True, startangle=90)
ax1.axis('equal') # Equal aspect ratio ensures that pie is drawn as a circle.
plt.show()
break This in bokeh will be?
Please format the code you posted, by wrapping it in triple backticks. -> `
Обсуждают сегодня