Skip to content

Instantly share code, notes, and snippets.

@FBosler
Created September 3, 2019 20:42
Show Gist options
  • Save FBosler/7f3bff7d3acd49479906798c0f6fd4c3 to your computer and use it in GitHub Desktop.
Save FBosler/7f3bff7d3acd49479906798c0f6fd4c3 to your computer and use it in GitHub Desktop.
sns.set(
font_scale=1.5,
rc={'figure.figsize':(20,10)}
)
ax = sns.lineplot(
x='Year',
y='Life Ladder',
hue='Continent',
marker="o",
markersize=12,
lw=3,
data=grouped_by_year_and_continent
)
ax.set_title('Life Ladder Development by Region')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment