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.
| 10724 10725 10726 10727 10728 10729 10730 10731 | # File 'lib/aws-sdk-glue/types.rb', line 10724 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.
| 10724 10725 10726 10727 10728 10729 10730 10731 | # File 'lib/aws-sdk-glue/types.rb', line 10724 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.
| 10724 10725 10726 10727 10728 10729 10730 10731 | # File 'lib/aws-sdk-glue/types.rb', line 10724 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the transform node.
| 10724 10725 10726 10727 10728 10729 10730 10731 | # File 'lib/aws-sdk-glue/types.rb', line 10724 class FillMissingValues < Struct.new( :name, :inputs, :imputed_path, :filled_path) SENSITIVE = [] include Aws::Structure end |