Como você consegue matplotlib.pyplot
"esquecer" plotagens anteriores
Estou tentando plotar várias vezes usando matplotlib.pyplot
O código é parecido com este:
def plottest():
import numpy as np
import matplotlib.pyplot as plt
a=np.random.rand(10,)
b=np.random.rand(10,)
c=np.random.rand(10,)
plt.plot(a,label='a')
plt.plot(b,label='b')
plt.plot(c,label='c')
plt.legend(loc='upper left')
plt.ylabel('mag')
plt.xlabel('element)')
plt.show()
e=np.random.rand(10,)
f=np.random.rand(10,)
g=np.random.rand(10,)
plt.plot(e,label='e')
plt.plot(f,label='f')
plt.plot(g,label='g')
plt.legend(loc='upper left')
plt.ylabel('mag')
plt.xlabel('element)')
plt.show()
Infelizmente, continuo obtendo o mesmo gráfico (na verdade, de algum outro código que executei e concluí há um tempo), não importa o que eu faça.
Código semelhante funcionou anteriormente para mim.
Eu olhei para estas questões:
Matplotlib pyplot show () não funciona depois de fechado
(python) matplotlib pyplot show () .. bloqueando ou não?
e tentei usar plt.show()
, plt.clf()
e plt.close
sem sucesso.
Alguma ideia?
fonte