Skip to content

Commit c6d1c7c

Browse files
authored
chore: fix notebook test. (#841)
1 parent 93785cb commit c6d1c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/regression/sklearn_linear_regression.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@
857857
"from bigframes.ml.preprocessing import StandardScaler, OneHotEncoder\n",
858858
"\n",
859859
"preprocessing = ColumnTransformer([\n",
860-
" (\"onehot\", OneHotEncoder(), [\"island\", \"species\", \"sex\"]),\n",
860+
" (\"onehot\", OneHotEncoder(), [\"island\", \"sex\"]),\n",
861861
" (\"scaler\", StandardScaler(), [\"culmen_depth_mm\", \"culmen_length_mm\", \"flipper_length_mm\"]),\n",
862862
"])\n",
863863
"\n",

0 commit comments

Comments
 (0)