File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 12
12
| [ OrdinalEncoder] ( @ref ) | Encode categorical variables into ordered integers |
13
13
| [ FrequencyEncoder] ( @ref ) | Encode categorical variables into their normalized or unormalized frequencies |
14
14
| [ 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)
19
19
| [ 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 |
21
21
| [ EntityEmbedder] ( @ref ) | Encode categorical variables into dense embedding vectors |
22
22
| [ CardinalityReducer] ( @ref ) | Reduce cardinality of high cardinality categorical features by grouping infrequent categories |
23
23
| [ MissingnessEncoder] ( @ref ) | Encode missing values of categorical features into new values |
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ Contrast Encoders include categorical encoders that could be modeled by a contra
2
2
3
3
| Transformer | Brief Description |
4
4
| :----------:| :----------:|
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)
9
9
| [ 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 |
11
11
12
12
13
13
``` @docs
You can’t perform that action at this time.
0 commit comments