Fix 5-2 Seaborn Lineplot call

pull/739/head
Maik Fruhner 1 month ago committed by GitHub
parent 67c605fab3
commit 890cf47657
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -169,7 +169,7 @@ Previously, you surmised that, because you have targeted 3 song genres, you shou
```python
plt.figure(figsize=(10,5))
sns.lineplot(range(1, 11), wcss,marker='o',color='red')
sns.lineplot(x=range(1, 11), y=wcss, marker='o', color='red')
plt.title('Elbow')
plt.xlabel('Number of clusters')
plt.ylabel('WCSS')

Loading…
Cancel
Save