| featureInfo-class {familiar} | R Documentation |
Feature information object.
Description
A featureInfo object contains information for a single feature. This information is used to check data prospectively for consistency and for data preparation. These objects are, for instance, attached to a familiarModel object so that data can be pre-processed in the same way as the development data.
Slots
nameName of the feature, which by default is the column name of the feature.
set_descriptorCharacter string describing the set to which the feature belongs. Currently not used.
feature_typeDescribes the feature type, i.e.
factorornumeric.levelsThe class levels of categorical features. This is used to check prospective datasets.
orderedSpecifies whether the
distributionFive-number summary (numeric) or class frequency (categorical).
data_idInternal identifier for the dataset used to derive the feature information.
run_idInternal identifier for the specific subset of the dataset used to derive the feature information.
in_signatureSpecifies whether the feature is included in the model signature.
in_noveltySpecifies whether the feature is included in the novelty detector.
removedSpecifies whether the feature was removed during pre-processing.
removed_unknown_typeSpecifies whether the feature was removed during pre-processing because the type was neither factor nor numeric..
removed_missing_valuesSpecifies whether the feature was removed during pre-processing because it contained too many missing values.
removed_no_varianceSpecifies whether the feature was removed during pre-processing because it did not contain more than 1 unique value.
removed_low_varianceSpecifies whether the feature was removed during pre-processing because the variance was too low. Requires applying
low_varianceas afilter_method.removed_low_robustnessSpecifies whether the feature was removed during pre-processing because it lacks robustness. Requires applying
robustnessas afilter_method, as well as repeated measurement.removed_low_importanceSpecifies whether the feature was removed during pre-processing because it lacks relevance. Requires applying
univariate_testas afilter_method.fraction_missingSpecifies the fraction of missing values.
robustnessSpecifies robustness of the feature, if measured.
univariate_importanceSpecifies the univariate p-value of the feature, if measured.
transformation_parametersDetails parameters for power transformation of numeric features.
normalisation_parametersDetails parameters for (global) normalisation of numeric features.
batch_normalisation_parametersDetails parameters for batch normalisation of numeric features.
imputation_parametersDetails parameters or models for imputation of missing values.
cluster_parametersDetails parameters for forming clusters with other features.
required_featuresDetails features required for clustering or imputation.
familiar_versionVersion of the familiar package.