Skip to content

Commit 24e7e0b

Browse files
committed
✨ Better style
1 parent 9953cef commit 24e7e0b

File tree

2 files changed

+5
-24
lines changed

2 files changed

+5
-24
lines changed

docs/src/assets/themes/documenter-light.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10943,7 +10943,8 @@ pre:hover .copy-button {
1094310943
.docstring > header {
1094410944
display: flex;
1094510945
flex-grow: 1;
10946-
align-items: stretch;
10946+
gap: 1rem;
10947+
align-items: center;
1094710948
padding: 0.5rem 0.75rem;
1094810949
background-color: #f5f5f5;
1094910950
box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);

docs/src/transformers/all_transformers.md

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,7 @@
1-
| Transformer | Brief Description |
2-
|:----------:|:----------:|
3-
| [Standardizer](@ref) | Transforming columns of numerical features by standardization |
4-
| [BoxCoxTransformer](@ref) | Transforming columns of numerical features by BoxCox transformation |
5-
| [UnivariateBoxCoxTransformer](@ref) | Apply BoxCox transformation given a single vector |
6-
| [InteractionTransformer](@ref) | Transforming columns of numerical features to create new interaction features |
7-
| [UnivariateDiscretizer](@ref) | Discretize a continuous vector into an ordered factor |
8-
| [FillImputer](@ref) | Fill missing values of features belonging to any scientific type |
9-
| [UnivariateTimeTypeToContinuous](@ref) | Transform a vector of time type into continuous type |
10-
| [OneHotEncoder](@ref) | Encode categorical variables into one-hot vectors |
11-
| [ContinuousEncoder](@ref) | Adds type casting functionality to OnehotEncoder |
12-
| [OrdinalEncoder](@ref) | Encode categorical variables into ordered integers |
13-
| [FrequencyEncoder](@ref) | Encode categorical variables into their normalized or unormalized frequencies |
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)
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 |
21-
| [EntityEmbedder](@ref) | Encode categorical variables into dense embedding vectors |
22-
| [CardinalityReducer](@ref) | Reduce cardinality of high cardinality categorical features by grouping infrequent categories |
23-
| [MissingnessEncoder](@ref) | Encode missing values of categorical features into new values |
241

2+
```@meta
3+
CollapsedDocStrings = true
4+
```
255

266
```@docs; canonical = false
277
MLJTransforms.Standardizer

0 commit comments

Comments
 (0)