Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

How do I add data labels to my lineplot in seaborn/matplotlib?

sns.set()

x = df.Year

y = df["%"]

sns.set(rc={'figure.figsize':(11.7,8.27)})

plt.title("States with Highest % of Children Tested with Confirmed BLLs ≥70 µg/dL in Each Year")

plt.plot(x, y, marker="o")

plt.show()

Comments