export_fs_vimp | R Documentation |
Extract and export feature selection variable importance from a familiarCollection.
export_fs_vimp(
object,
dir_path = NULL,
aggregate_results = TRUE,
aggregation_method = waiver(),
rank_threshold = waiver(),
export_collection = FALSE,
...
)
## S4 method for signature 'familiarCollection'
export_fs_vimp(
object,
dir_path = NULL,
aggregate_results = TRUE,
aggregation_method = waiver(),
rank_threshold = waiver(),
export_collection = FALSE,
...
)
## S4 method for signature 'ANY'
export_fs_vimp(
object,
dir_path = NULL,
aggregate_results = TRUE,
aggregation_method = waiver(),
rank_threshold = waiver(),
export_collection = FALSE,
...
)
object |
A |
dir_path |
Path to folder where extracted data should be saved. |
aggregate_results |
Flag that signifies whether results should be aggregated for export. |
aggregation_method |
(optional) The method used to aggregate variable importances over different data subsets, e.g. bootstraps. The following methods can be selected:
|
rank_threshold |
(optional) The threshold used to define the subset of highly important features. If not set, this threshold is determined by maximising the variance in the occurrence value over all features over the subset size. This parameter is only relevant for |
export_collection |
(optional) Exports the collection if TRUE. |
... |
Arguments passed on to
|
Data, such as model performance and calibration information, is
usually collected from a familiarCollection
object. However, you can also
provide one or more familiarData
objects, that will be internally
converted to a familiarCollection
object. Paths to the previous files can
also be provided.
Unlike other export function, export using familiarEnsemble
or
familiarModel
objects is not possible. This is because feature selection
variable importance is not stored within familiarModel
objects.
All parameters aside from object
and dir_path
are only used if object
is not a familiarCollection
object, or a path to one.
Variable importance is based on the ranking produced by feature selection
routines. In case feature selection was performed repeatedly, e.g. using
bootstraps, feature ranks are first aggregated using the method defined by
the aggregation_method
, some of which require a rank_threshold
to
indicate a subset of most important features.
Information concerning highly similar features that form clusters is provided as well. This information is based on consensus clustering of the features. This clustering information is also used during aggregation to ensure that co-clustered features are only taken into account once.
A data.table (if dir_path
is not provided), or nothing, as all data
is exported to csv
files.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.