scikit-learnのユーザーガイド「7.3. データの前処理 (Preprocessing data)」において、各章ごとの解説と用途についてまとめたものが以下の通りになります。 scikit-learn.org 7.3. データの前処理 (Preprocessing data) 7.3.1標準化:平均の除去と分散のスケーリング(Standardization, or mean removal and variance scaling) 説明: データの平均を 0 に、標準偏差を 1 に揃える処理です(StandardScaler など)。 特徴: 特徴量ごとの「単位」の影響を取り除きま…