getml.pipeline.feature
Custom representing a sole feature.
 Feature  dataclass  
 Feature(
    index: int,
    name: str,
    pipeline: str,
    target: str,
    targets: Sequence[str],
    importance: float,
    correlation: float,
    sql: SQLString,
)
Dataclass that holds data about a single feature.
| PARAMETER | DESCRIPTION | 
|---|---|
| index | The index of the feature.   TYPE:  | 
| name | The name of the feature.   TYPE:  | 
| pipeline | The pipeline the feature is from.   TYPE:  | 
| target | The target the feature is associated with.   TYPE:  | 
| targets | The targets the feature is associated with. | 
| importance | The importance of the feature.   TYPE:  | 
| correlation | The correlation of the feature with the target.   TYPE:  | 
| sql | The SQL code of the feature.   TYPE:  |