Copyright | (c) 2013-2023 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- data FillMissingValues = FillMissingValues' {
- filledPath :: Maybe Text
- name :: Text
- inputs :: NonEmpty Text
- imputedPath :: Text
- newFillMissingValues :: Text -> NonEmpty Text -> Text -> FillMissingValues
- fillMissingValues_filledPath :: Lens' FillMissingValues (Maybe Text)
- fillMissingValues_name :: Lens' FillMissingValues Text
- fillMissingValues_inputs :: Lens' FillMissingValues (NonEmpty Text)
- fillMissingValues_imputedPath :: Lens' FillMissingValues Text
Documentation
data FillMissingValues Source #
Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.
See: newFillMissingValues
smart constructor.
FillMissingValues' | |
|
Instances
:: Text | |
-> NonEmpty Text | |
-> Text | |
-> FillMissingValues |
Create a value of FillMissingValues
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:filledPath:FillMissingValues'
, fillMissingValues_filledPath
- A JSON path to a variable in the data structure for the dataset that is
filled.
$sel:name:FillMissingValues'
, fillMissingValues_name
- The name of the transform node.
$sel:inputs:FillMissingValues'
, fillMissingValues_inputs
- The data inputs identified by their node names.
$sel:imputedPath:FillMissingValues'
, fillMissingValues_imputedPath
- A JSON path to a variable in the data structure for the dataset that is
imputed.
fillMissingValues_filledPath :: Lens' FillMissingValues (Maybe Text) Source #
A JSON path to a variable in the data structure for the dataset that is filled.
fillMissingValues_name :: Lens' FillMissingValues Text Source #
The name of the transform node.
fillMissingValues_inputs :: Lens' FillMissingValues (NonEmpty Text) Source #
The data inputs identified by their node names.
fillMissingValues_imputedPath :: Lens' FillMissingValues Text Source #
A JSON path to a variable in the data structure for the dataset that is imputed.