Skip to content

Commit

Permalink
Fix 5-2 Seaborn Lineplot call
Browse files Browse the repository at this point in the history
  • Loading branch information
mfruhner committed May 29, 2024
1 parent 67c605f commit 890cf47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 5-Clustering/2-K-Means/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 890cf47

Please sign in to comment.