Skip to content

Commit 3d72ff6

Browse files
committed
✨ Fix links for contrast encoder
1 parent 1e78e89 commit 3d72ff6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/src/transformers/all_transformers.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
| [OrdinalEncoder](@ref) | Encode categorical variables into ordered integers |
1313
| [FrequencyEncoder](@ref) | Encode categorical variables into their normalized or unormalized frequencies |
1414
| [TargetEncoder](@ref) | Encode categorical variables into relevant target statistics |
15-
| [DummyEncoder](@ref) | Encodes by comparing each level to the reference level, intercept being the cell mean of the reference group |
16-
| [SumEncoder](@ref) | Encodes by comparing each level to the reference level, intercept being the grand mean |
17-
| [HelmertEncoder](@ref) | Encodes by comparing levels of a variable with the mean of the subsequent levels of the variable
18-
| [ForwardDifferenceEncoder](@ref) | Encodes by comparing adjacent levels of a variable (each level minus the next level)
15+
| [DummyEncoder](@ref ContrastEncoder) | Encodes by comparing each level to the reference level, intercept being the cell mean of the reference group |
16+
| [SumEncoder](@ref ContrastEncoder) | Encodes by comparing each level to the reference level, intercept being the grand mean |
17+
| [HelmertEncoder](@ref ContrastEncoder) | Encodes by comparing levels of a variable with the mean of the subsequent levels of the variable
18+
| [ForwardDifferenceEncoder](@ref ContrastEncoder) | Encodes by comparing adjacent levels of a variable (each level minus the next level)
1919
| [ContrastEncoder](@ref) | Allows defining a custom contrast encoder via a contrast matrix |
20-
| [HypothesisEncoder](@ref) | Allows defining a custom contrast encoder via a hypothesis matrix |
20+
| [HypothesisEncoder](@ref ContrastEncoder) | Allows defining a custom contrast encoder via a hypothesis matrix |
2121
| [EntityEmbedder](@ref) | Encode categorical variables into dense embedding vectors |
2222
| [CardinalityReducer](@ref) | Reduce cardinality of high cardinality categorical features by grouping infrequent categories |
2323
| [MissingnessEncoder](@ref) | Encode missing values of categorical features into new values |

docs/src/transformers/contrast.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ Contrast Encoders include categorical encoders that could be modeled by a contra
22

33
| Transformer | Brief Description |
44
|:----------:|:----------:|
5-
| [DummyEncoder](@ref) | Encodes by comparing each level to the reference level, intercept being the cell mean of the reference group |
6-
| [SumEncoder](@ref) | Encodes by comparing each level to the reference level, intercept being the grand mean |
7-
| [HelmertEncoder](@ref) | Encodes by comparing levels of a variable with the mean of the subsequent levels of the variable
8-
| [ForwardDifferenceEncoder](@ref) | Encodes by comparing adjacent levels of a variable (each level minus the next level)
5+
| [DummyEncoder](@ref ContrastEncoder) | Encodes by comparing each level to the reference level, intercept being the cell mean of the reference group |
6+
| [SumEncoder](@ref ContrastEncoder) | Encodes by comparing each level to the reference level, intercept being the grand mean |
7+
| [HelmertEncoder](@ref ContrastEncoder) | Encodes by comparing levels of a variable with the mean of the subsequent levels of the variable
8+
| [ForwardDifferenceEncoder](@ref ContrastEncoder) | Encodes by comparing adjacent levels of a variable (each level minus the next level)
99
| [ContrastEncoder](@ref) | Allows defining a custom contrast encoder via a contrast matrix |
10-
| [HypothesisEncoder](@ref) | Allows defining a custom contrast encoder via a hypothesis matrix |
10+
| [HypothesisEncoder](@ref ContrastEncoder) | Allows defining a custom contrast encoder via a hypothesis matrix |
1111

1212

1313
```@docs

0 commit comments

Comments
 (0)