Brak tytułu
Data utworzenia: 2024-12-11 12:24:02
plt.xlabel("Dane osi x", c="g", fontsize=8, loc="left")
plt.ylabel("Dane osi y", c="r", fontsize=8, loc="bottom")
# plt.plot(x, y, marker="<", ms=20, mfc="y", mec="r", ls=":", c="DarkGreen", lw=15)
plt.plot(x, y, marker=".", ms=10, mfc="w", mew=10, mec="g", c="r", ls=":", lw=5)
plt.plot(x1, y1, marker="+", ms=15, mfc="w", mew=7, mec="g", c="y", ls="--", lw=3)
plt.legend(["Legenda"],fontsize="x-large",title="liczby",shadow=True)
Powrót