Skip to content

Commit

Permalink
docs: undo changes to classification tutorial
Browse files Browse the repository at this point in the history
This prevents merge conflicts since others are currently working on the tutorial as well.
  • Loading branch information
lars-reimann committed Jun 28, 2024
1 parent 4038c19 commit 3042081
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/tutorials/classification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"source": [
"train_table, testing_table = titanic.split_rows(0.6)\n",
"\n",
"test_table = testing_table.remove_columns([\"fare\"]).shuffle_rows()"
"test_table = testing_table.remove_columns([\"survived\"]).shuffle_rows()"
]
},
{
Expand Down Expand Up @@ -171,8 +171,6 @@
"prediction = fitted_model.predict(\n",
" transformed_test_table\n",
")\n",
"\n",
"\n",
"#For visualisation purposes we only print out the first 15 rows.\n",
"prediction.to_table().slice_rows(start=0, length=15)"
]
Expand Down

0 comments on commit 3042081

Please sign in to comment.