“¿Cómo hacer una trama en matplotlib python?” Código de respuesta

Cómo trazar un gráfico usando matplotlib

from matplotlib import pyplot as plt
plt.plot([0, 1, 2, 3, 4, 5], [0, 1, 4, 9, 16, 25])
plt.show()
.

¿Cómo hacer una trama en matplotlib python?

import matplotlib.pyplot as plt
%matplotlib inline
plt.plot(data)
#this is not nessisary but makes your plot more readable
plt.ylabel('y axis means ...')
plt.xlabel('x axis means ...')
SimTheGreat

Respuestas similares a “¿Cómo hacer una trama en matplotlib python?”

Preguntas similares a “¿Cómo hacer una trama en matplotlib python?”

Más respuestas relacionadas con “¿Cómo hacer una trama en matplotlib python?” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código