Class: Aws::Glue::Types::FillMissingValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::FillMissingValues
- Defined in:
- gems/aws-sdk-glue/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.
10657 10658 10659 10660 10661 10662 10663 10664 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10657 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.
10657 10658 10659 10660 10661 10662 10663 10664 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10657 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.
10657 10658 10659 10660 10661 10662 10663 10664 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10657 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the transform node.
10657 10658 10659 10660 10661 10662 10663 10664 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10657 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |