Skip to content

Instantly share code, notes, and snippets.

@h3ik0th
Created September 16, 2021 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h3ik0th/cd02ba6f3501836ae99d371f6c6fb30a to your computer and use it in GitHub Desktop.
Save h3ik0th/cd02ba6f3501836ae99d371f6c6fb30a to your computer and use it in GitHub Desktop.
# plot Tyrion and Cersei's fame:
ax = df["Tyrion"].plot(color="blue", label="Tyrion", legend=True, title="Tyrion & Cersei", figsize=(12,6))
df["Cersei"].plot(color="red", label="Cersei", style="-", legend=True, ax=ax)
ax.autoscale(axis="x",tight=True)
ax.set(xlabel="week", ylabel="fame")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment