Optimized Features

Optimized Features

The Optimized Features section in Ready Signal displays the predictors that have been automatically filtered, tested, and validated by our feature selection algorithm. This process ensures that only the most statistically relevant and stable predictors are surfaced to the user. 

How Optimized Features Are Determined

  1. Check for Multicollinearity
    • The algorithm calculates the Variance Inflation Factor (VIF) for each predictor.
    • Predictors with a VIF greater than the defined threshold (commonly 10) are removed to avoid unstable regression results caused by multicollinearity.
  2. Run Univariate Regression Tests
    • Each remaining predictor is tested individually against the target variable.
    • Predictors with a statistically significant relationship (p-value < 0.05) are flagged as potentially important.
  3. Apply Machine Learning Feature Selection
    Three different methods are applied to further refine the predictor set:
    • LassoCV: Shrinks coefficients of weak predictors to zero. Predictors with non-zero coefficients are retained.
    • Recursive Feature Elimination (RFE): Iteratively removes the weakest predictors until the optimal set is identified.
    • Random Forest Regressor: Assigns an importance score to each predictor. Predictors above the median importance threshold are kept.
  4. Combine Results
    • Each method produces a set of selected predictors.
    • A majority vote is applied (e.g., predictor must be chosen by at least 3 out of 4 methods to remain).
    • Predictors selected by all methods are highlighted as the strongest candidates.
  5. Fit the Final Model
    • A final regression model is built using the predictors that survived the selection process.
    • The summary output includes coefficients, p-values, and performance statistics describing the model’s fit.
  6. Handling Edge Cases
    • If no predictors meet the selection criteria, the algorithm applies a default rule.
    • Defaults display the most highly correlated features to the target variable, ensuring stability and interpretability of results.

 

Why This Matters

 

The Optimized Features you see in the platform are not just raw correlations — they are the output of this rigorous selection pipeline. By surfacing these features, Ready Signal helps ensure your models are based on predictors that are:

  • Statistically validated
  • Non-redundant
  • Relevant to your target outcome

This means that what appears in the Optimized Features section represents the predictors most likely to improve model performance and provide actionable business insights.

  •  

Scroll to Top