“Mostre várias parcelas python” Respostas de código

Mostre várias parcelas python

#One way to plot two figure at once
f = plt.figure(1)
plt.plot([1,2],[2,3])
f.show()

g = plt.figure(2)
plt.plot([2,7,3],[5,1,9])
g.show()
Average Joe

Lote múltiplo em uma figura python

import matplotlib.pyplot as plt

plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
plt.legend(loc='best')
plt.show()
Joyous Jaguar

abrir várias parcelas python

f = plt.figure(1)
plt.hist........
............
f.show()

g = plt.figure(2)
plt.hist(........
................
g.show()

raw_input()
MitchAloha

Respostas semelhantes a “Mostre várias parcelas python”

Perguntas semelhantes a “Mostre várias parcelas python”

Mais respostas relacionadas para “Mostre várias parcelas python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código