“Fügen Sie Text zu Python hinzu” Code-Antworten

Fügen Sie Text zu Python hinzu

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

Fügen Sie Text hinzu, um die Python -Streuung zu zeichnen

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

Ähnliche Antworten wie “Fügen Sie Text zu Python hinzu”

Fragen ähnlich wie “Fügen Sie Text zu Python hinzu”

Weitere verwandte Antworten zu “Fügen Sie Text zu Python hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen