Scale and Transform
Normalize
PARAMETERS
Example
# load dataset
from pycaret.datasets import get_data
pokemon = get_data('pokemon')
# init setup
from pycaret.classification import *
clf1 = setup(data = pokemon, target = 'Legendary', normalize = True)Before

After

Effect of Normalization:

Feature Transform
PARAMETERS
Example
Before

After

Effect of Feature Transformation:

Target Transform
PARAMETERS
Example
Before

After

Last updated
Was this helpful?