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()
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
Post a Comment