Select Features
The feature selection module in the sovai library provides various methods to identify and select the most important features from financial datasets.
Feature Selection Methods
df_mega.select_features(method, n_components=10)1. Random Projection
df_mega.select_features("random_projection", n_components=10)2. Random Fourier Features
df_mega.select_features("fourier", n_components=10)3. Independent Component Analysis (ICA)
df_mega.select_features("ica", n_components=10)Truncated Singular Value Decomposition (SVD)
df_mega.select_features("svd", n_components=10)Sparse Random Projection
Clustered SHAP Ensemble
Variability-based Selection
Parameters
Return Value
Usage Notes
Last updated