Skip to content

Commit 03e26cc

Browse files
committed
update index.md
1 parent 6031ba5 commit 03e26cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ y = @views(
6161
) .+ 20 .* (A[:, 3] .- 0.5).^ 2 .+ 10 .* A[:, 4] .+ 5 * A[:, 5]
6262
) # target
6363
```
64-
Now we that we have our data we can create our recursive feature elimination model and
64+
Now we that we have our data, we can create our recursive feature elimination model and
6565
train it on our dataset
6666
```@example example1
6767
RandomForestRegressor = @load RandomForestRegressor pkg=DecisionTree
@@ -100,7 +100,7 @@ julia> feature_importances(mach)
100100
:x9 => 1
101101
:x10 => 1
102102
```
103-
Note that a variable with lower rank has more significance than a variable with higher rank while a variable with higher feature importance is better than a variable with lower feature importance.
103+
Note that a variable with lower rank has more significance than a variable with higher rank; while a variable with higher feature importance is better than a variable with lower feature importance.
104104

105105
We can view the important features used by our model by inspecting the `fitted_params`
106106
object.

0 commit comments

Comments
 (0)