“Tambahkan teks untuk plot python” Kode Jawaban

Tambahkan teks untuk plot python

import matplotlib.pyplot as plt
w = 4
h = 3
d = 70
plt.figure(figsize=(w, h), dpi=d)
x = [1, 2, 4]
x_pos = 0.5
y_pos = 3
plt.text(x_pos, y_pos, "text on plot")
plt.plot(x)
plt.savefig("out.png")Outputout.png
Ugliest Unicorn

Tambahkan teks untuk plot python scatter

y = [2.56422, 3.77284, 3.52623, 3.51468, 3.02199]
z = [0.15, 0.3, 0.45, 0.6, 0.75]
n = [58, 651, 393, 203, 123]

fig, ax = plt.subplots()
ax.scatter(z, y)

for i, txt in enumerate(n):
    ax.annotate(txt, (z[i], y[i]))
Perro Fiel

Jawaban yang mirip dengan “Tambahkan teks untuk plot python”

Pertanyaan yang mirip dengan “Tambahkan teks untuk plot python”

Lebih banyak jawaban terkait untuk “Tambahkan teks untuk plot python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya