Fix 5-1 sns.FacetGrid call to match sns 0.13 API

pull/739/head
Maik Fruhner 4 months ago committed by GitHub
parent 26528ebce2
commit 67c605fab3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -300,7 +300,7 @@ Are these three genres significantly different in the perception of their dancea
1. Create a scatter plot:
```python
sns.FacetGrid(df, hue="artist_top_genre", size=5) \
sns.FacetGrid(df, hue="artist_top_genre", height=5) \
.map(plt.scatter, "popularity", "danceability") \
.add_legend()
```

Loading…
Cancel
Save