diff --git a/2-Regression/4-Logistic/README.md b/2-Regression/4-Logistic/README.md index 34e49aaba5..3d09a64baf 100644 --- a/2-Regression/4-Logistic/README.md +++ b/2-Regression/4-Logistic/README.md @@ -202,8 +202,8 @@ You can visualize variables side-by-side with Seaborn plots. ```python palette = { - 0: 'orange', - 1: 'wheat' + '0': 'orange', + '1': 'wheat' } sns.swarmplot(x="Color", y="ord__Item Size", data=encoded_pumpkins, palette=palette) ```