plt.pie(size,labels=columns)
p=plt.gcf()
p.gca().add_artist(my_graph)
plt.show()
I don't understand this code. Can anyone explain me ?
plt.pie(size,labels=columns)
p=plt.gcf()
p.gca().add_artist(my_graph)
plt.show()
I don't understand this code. Can anyone explain me ?
matplotlib.pyplot.gcf()[source] Get the current figure.
If no current figure exists, a new one is created using figure(). click here