Skip to content

Commit 48d3324

Browse files
committed
fd-update
1 parent 421f8fa commit 48d3324

25 files changed

+72
-72
lines changed

__site/assets/literate/A-fit-predict.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
### Data
99

10-
As in "[choosing a model](choosing-a-model.html)", let's load the Iris dataset and unpack it:
10+
As in "[choosing a model](/getting-started/choosing-a-model/)", let's load the Iris dataset and unpack it:
1111

1212
```julia:ex1
1313
using MLJ, Statistics, PrettyPrinting

__site/assets/literate/D0-loading.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The `dataset` function returns a `DataFrame` object from the [DataFrames.jl](htt
2626
typeof(boston)
2727
```
2828

29-
For a short introduction to DataFrame objects, see [this tutorial](/pub/data/dataframe.html).
29+
For a short introduction to DataFrame objects, see [this tutorial](/data/).
3030

3131
## Using CSV
3232

__site/assets/literate/ISL-lab-3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe(boston, :mean, :std, :eltype)
3232
```
3333

3434
So there's no missing value and most variables are encoded as floating point numbers.
35-
In MLJ it's important to specify the interpretation of the features (should it be considered as a Continuous feature, as a Count, ...?), see also [this tutorial section](/pub/getting-started/choosing-a-model.html#data_and_its_interpretation) on scientific types.
35+
In MLJ it's important to specify the interpretation of the features (should it be considered as a Continuous feature, as a Count, ...?), see also [this tutorial section](/getting-started/choosing-a-model/#data_and_its_interpretation) on scientific types.
3636

3737
Here we will just interpret the integer features as continuous as we will just use a basic linear regression:
3838

__site/assets/literate/ISL-lab-5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ savefig(joinpath(@OUTPUT, "ISL-lab-5-g3.svg")) # hide
136136

137137
Let's crossvalidate over the degree of the polynomial.
138138

139-
**Note**: there's a bit of gymnastics here because MLJ doesn't directly support a polynomial regression; see our tutorial on [tuning models](/pub/getting-started/model-tuning.html) for a gentler introduction to model tuning.
139+
**Note**: there's a bit of gymnastics here because MLJ doesn't directly support a polynomial regression; see our tutorial on [tuning models](/getting-started/model-tuning/) for a gentler introduction to model tuning.
140140
The gist of the following code is to create a dataframe where each column is a power of the `Horsepower` feature from 1 to 10 and we build a series of regression models using incrementally more of those features (higher degree):
141141

142142
```julia:ex11

__site/css/extra.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

__site/css/franklin.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)