“Mostrar múltiples tramas Python” Código de respuesta

Mostrar múltiples tramas 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

Gráfico múltiple en una 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

Abra múltiples tramas Python

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

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

raw_input()
MitchAloha

Respuestas similares a “Mostrar múltiples tramas Python”

Preguntas similares a “Mostrar múltiples tramas Python”

Más respuestas relacionadas con “Mostrar múltiples tramas Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código