Class: Aws::Glue::Types::ColumnImportance
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::ColumnImportance
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A structure containing the column name and column importance score for a column.
Column importance helps you understand how columns contribute to your model, by identifying which columns in your records are more important than others.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #column_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of a column. 
- 
  
    
      #importance  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The column importance score for the column, as a decimal. 
Instance Attribute Details
#column_name ⇒ String
The name of a column.
| 3057 3058 3059 3060 3061 3062 | # File 'lib/aws-sdk-glue/types.rb', line 3057 class ColumnImportance < Struct.new( :column_name, :importance) SENSITIVE = [] include Aws::Structure end | 
#importance ⇒ Float
The column importance score for the column, as a decimal.
| 3057 3058 3059 3060 3061 3062 | # File 'lib/aws-sdk-glue/types.rb', line 3057 class ColumnImportance < Struct.new( :column_name, :importance) SENSITIVE = [] include Aws::Structure end |