“Beberapa plot sebar di Python” Kode Jawaban

Beberapa plot sebar di Python

import matplotlib.pyplot as plt

x = range(100)
y = range(100,200)
fig = plt.figure()
ax1 = fig.add_subplot(111)

ax1.scatter(x[:4], y[:4], s=10, c='b', marker="s", label='first')
ax1.scatter(x[40:],y[40:], s=10, c='r', marker="o", label='second')
plt.legend(loc='upper left');
plt.show()
Good Goosander

cara menyebarkan plot di matplotlib dari dua set

import matplotlib.pyplot as plt
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.scatter(x1, y1, s = 10, c = 'b', label = 'elbow')
ax1.scatter(x2, y2, s = 10, c = 'r', label = 'shoulder')
plt.legend(loc='upper left');
plt.show()
Cautious Cod

Jawaban yang mirip dengan “Beberapa plot sebar di Python”

Pertanyaan yang mirip dengan “Beberapa plot sebar di Python”

Lebih banyak jawaban terkait untuk “Beberapa plot sebar di Python” di TypeScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya