Skip to content

Commit 935fc9f

Browse files
authored
fix a typo in the graph label
y=0 should be replaced with y=1
1 parent d74cc34 commit 935fc9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/notebooks/generalized_gaussian_ssm/cmgf_logistic_regression_demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
],
184184
"source": [
185185
"plt.scatter(X[y==0, 1], X[y==0, 2], c='red', s=50, edgecolors='gray', label=r'$y=0$')\n",
186-
"plt.scatter(X[y==1, 1], X[y==1, 2], c='black', s=50, edgecolors='gray', label=r'$y=0$')\n",
186+
"plt.scatter(X[y==1, 1], X[y==1, 2], c='black', s=50, edgecolors='gray', label=r'$y=1$')\n",
187187
"plt.xlabel(r\"$x_1$\")\n",
188188
"plt.ylabel(r\"$x_2$\")\n",
189189
"plt.legend()\n",

0 commit comments

Comments
 (0)