“mate” Código de respuesta

Python Pip Instalar matplotlib

pip install matplotlib
Tremendous Enceladus

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()
.

gráfica de matplotlib

import matplotlib.pyplot as plt
fig = plt.figure(1)	#identifies the figure 
plt.title("Y vs X", fontsize='16')	#title
plt.plot([1, 2, 3, 4], [6,2,8,4])	#plot the points
plt.xlabel("X",fontsize='13')	#adds a label in the x axis
plt.ylabel("Y",fontsize='13')	#adds a label in the y axis
plt.legend(('YvsX'),loc='best')	#creates a legend to identify the plot
plt.savefig('Y_X.png')	#saves the figure in the present directory
plt.grid()	#shows a grid under the plot
plt.show()
Uptight Unicorn

Matplotlib 3.0.3 Rueda

pip install matplotlib==3.0.3
raj_singh010

mate

# importing matplotlib module
 from matplotlib import pyplot as plt
  
# Plotting to our canvas  
 plt.plot([1,2,3],[4,5,1])
  
# Showing what we plotted 
 plt.show()
Enchanting Eland

mate

import matplotlib
matplotlib.__version__
Healthy Heron

Respuestas similares a “mate”

Preguntas similares a “mate”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código