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.
9265 9266 9267 9268 9269 9270 9271 9272 |
# File 'lib/aws-sdk-glue/types.rb', line 9265 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.
9265 9266 9267 9268 9269 9270 9271 9272 |
# File 'lib/aws-sdk-glue/types.rb', line 9265 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.
9265 9266 9267 9268 9269 9270 9271 9272 |
# File 'lib/aws-sdk-glue/types.rb', line 9265 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the transform node.
9265 9266 9267 9268 9269 9270 9271 9272 |
# File 'lib/aws-sdk-glue/types.rb', line 9265 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |