Skip to content

Commit

Permalink
refresh tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiedb committed Apr 1, 2023
1 parent 7da9da9 commit b9062eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pages = [
"API" => "api.md",
"Tutorials" => [
"Regression - Boston" => "tutorials/regression-boston.md",
"Logistic Regression - Titanic" => "logistic-regression-titanic.md",
"Logistic Regression - Titanic" => "tutorials/logistic-regression-titanic.md",
"Classification - IRIS" => "tutorials/classification-iris.md",
"Internal API" => "tutorials/examples-API.md",
"MLJ API" => "tutorials/examples-MLJ.md"]
Expand Down
4 changes: 2 additions & 2 deletions docs/src/tutorials/logistic-regression-titanic.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Logistic Regression on Titanic Dataset

## Dataset

We will use the Titanic dataset, which is included in the MLDatasets package. It describes the survival status of individual passengers on the Titanic. The model will be approached as a logistic regression problem, although a Classifier model could also have been used (see the `Classification - Iris` tutorial).

## Getting started

To begin, we will load the required packages and the dataset:

```julia
Expand Down

0 comments on commit b9062eb

Please sign in to comment.