Feature Selection
Feature Selection
PARAMETERS
Example
# load dataset
from pycaret.datasets import get_data
diabetes = get_data('diabetes')
# init setup
from pycaret.regression import *
clf1 = setup(data = diabetes, target = 'Class variable', feature_selection = True)Before

After

Remove Multicollinearity
PARAMETERS
Example
Before

After

Principal Component Analysis
Example
Before

After

Ignore Low Variance
PARAMETERS
Example
Before

After

Last updated
Was this helpful?