“Python plot dua baris pada grafik yang sama” Kode Jawaban

Python plot dua baris pada grafik yang sama

import matplotlib.pylot as plt
x_coordinates = [1, 2, 3]

y1_coordinates = [1, 2, 3]
y2_coordinates = [3, 4, 5]

fig = plt.figure(1)
plt.plot(x_coordinates, y1_coordinates) # plot first line
plt.plot(x_coordinates, y2_coordinates) # plot second line
plt.show()
Karamolegkos

Python plot beberapa baris dalam gambar yang sama

# Short answer:
Call plt.plot() as many times as needed to add additional lines to plot.

# Example usage:
import matplotlib.pylot as plt
x_coordinates = [1, 2, 3]

y1_coordinates = [1, 2, 3]
y2_coordinates = [3, 4, 5]

plt.plot(x_coordinates, y1_coordinates) # plot first line
plt.plot(x_coordinates, y2_coordinates) # plot second line
Charles-Alexandre Roy

Jawaban yang mirip dengan “Python plot dua baris pada grafik yang sama”

Pertanyaan yang mirip dengan “Python plot dua baris pada grafik yang sama”

Lebih banyak jawaban terkait untuk “Python plot dua baris pada grafik yang sama” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya