data_feature
openml.datasets.data_feature
#
OpenMLDataFeature
#
OpenMLDataFeature(index: int, name: str, data_type: str, nominal_values: list[str], number_missing_values: int, ontologies: list[str] | None = None)
Data Feature (a.k.a. Attribute) object.
| PARAMETER | DESCRIPTION |
|---|---|
index
|
The index of this feature
TYPE:
|
name
|
Name of the feature
TYPE:
|
data_type
|
can be nominal, numeric, string, date (corresponds to arff)
TYPE:
|
nominal_values
|
list of the possible values, in case of nominal attribute
TYPE:
|
number_missing_values
|
Number of rows that have a missing value for this feature.
TYPE:
|
ontologies
|
list of ontologies attached to this feature. An ontology describes the concept that are described in a feature. An ontology is defined by an URL where the information is provided.
TYPE:
|