“Matplotlib -Diagramm” Code-Antworten

So zeichnen Sie ein Diagramm mit Matplotlib auf

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

matplotlib.pyplot als pLT importieren

from matplotlib import pyplot as plt

import matplotlib.pyplot as plt 
Foolish Flamingo

Matplotlib -Diagramm

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

So importieren Sie Matplotlib.pyplo in Python

import matplotlib.pylot as plt 
Bst Barracuda

Python -Handlung

import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.show()
mrjakobdk

Python matplt

import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()
Plain Platypus

Ähnliche Antworten wie “Matplotlib -Diagramm”

Fragen ähnlich wie “Matplotlib -Diagramm”

Weitere verwandte Antworten zu “Matplotlib -Diagramm” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen