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.
2725 2726 2727 2728 2729 2730 |
# File 'lib/aws-sdk-glue/types.rb', line 2725 class ColumnImportance < Struct.new( :column_name, :importance) SENSITIVE = [] include Aws::Structure end |
#importance ⇒ Float
The column importance score for the column, as a decimal.
2725 2726 2727 2728 2729 2730 |
# File 'lib/aws-sdk-glue/types.rb', line 2725 class ColumnImportance < Struct.new( :column_name, :importance) SENSITIVE = [] include Aws::Structure end |