“matplotlib” Réponses codées

Python pip install Matplotlib

pip install matplotlib
Tremendous Enceladus

Comment tracer un graphique à l'aide de matplotlib

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

Terrain 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 Fichier de roues

pip install matplotlib==3.0.3
raj_singh010

matplotlib

# 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

matplotlib

import matplotlib
matplotlib.__version__
Healthy Heron

Réponses similaires à “matplotlib”

Questions similaires à “matplotlib”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code