Created
September 3, 2019 20:42
-
-
Save FBosler/7f3bff7d3acd49479906798c0f6fd4c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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