Class: Aws::Glue::Types::FillMissingValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::FillMissingValues
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filled_path ⇒ String
A JSON path to a variable in the data structure for the dataset that is filled.
-
#imputed_path ⇒ String
A JSON path to a variable in the data structure for the dataset that is imputed.
-
#inputs ⇒ Array<String>
The data inputs identified by their node names.
-
#name ⇒ String
The name of the transform node.
Instance Attribute Details
#filled_path ⇒ String
A JSON path to a variable in the data structure for the dataset that is filled.
10690 10691 10692 10693 10694 10695 10696 10697 |
# File 'lib/aws-sdk-glue/types.rb', line 10690 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |
#imputed_path ⇒ String
A JSON path to a variable in the data structure for the dataset that is imputed.
10690 10691 10692 10693 10694 10695 10696 10697 |
# File 'lib/aws-sdk-glue/types.rb', line 10690 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |
#inputs ⇒ Array<String>
The data inputs identified by their node names.
10690 10691 10692 10693 10694 10695 10696 10697 |
# File 'lib/aws-sdk-glue/types.rb', line 10690 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the transform node.
10690 10691 10692 10693 10694 10695 10696 10697 |
# File 'lib/aws-sdk-glue/types.rb', line 10690 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |