Add example demonstrating StandardScaler and MinMaxScaler for data preprocessing.
Background:
Data preprocessing with feature scaling is fundamental to many ML algorithms (SVM, neural networks, distance-based methods), but we currently lack a comprehensive example showing how and when to use scalers.
Scope:
Create a comprehensive example showing:
- StandardScaler (z-score normalization: mean=0, std=1)
- MinMaxScaler (range normalization: [0,1] or custom range)
- When to use each type of scaling
- Impact of scaling on algorithm performance
- fit() vs. fit_transform() vs. transform() workflow
- Inverse transformation
Deliverables:
Labels: documentation, enhancement, preprocessing
Add example demonstrating StandardScaler and MinMaxScaler for data preprocessing.
Background:
Data preprocessing with feature scaling is fundamental to many ML algorithms (SVM, neural networks, distance-based methods), but we currently lack a comprehensive example showing how and when to use scalers.
Scope:
Create a comprehensive example showing:
Deliverables:
examples/data_preprocessing_scalers.rsbook/src/examples/data-preprocessing-scalers.mdLabels: documentation, enhancement, preprocessing