Can anyone explain me StandardScaler?

前端 未结 9 493
一整个雨季
一整个雨季 2020-12-04 05:54

I am unable to understand the page of the StandardScaler in the documentation of sklearn.

Can anyone explain this to me in simple terms?

9条回答
  •  萌比男神i
    2020-12-04 06:49

    After applying StandardScaler(), each column in X will have mean of 0 and standard deviation of 1.

    Formulas are listed by others on this page.

    Rationale: some algorithms require data to look like this (see sklearn docs).

提交回复
热议问题