You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MeanStdScaling computes one set of mean and std params for all the data provided.
There is not a convenient way to compute separate mean and std params for, e.g., a list of columns without looping or creating a separate transform for each.
The text was updated successfully, but these errors were encountered:
I think computing mean and std per column should be not only an optional feature but the default one. The current implementation is dangerous because people want to compute statistics per feature (per columns) variable and it is extremely rare to compute single statistics over multiple features.
MeanStdScaling
computes one set of mean and std params for all the data provided.There is not a convenient way to compute separate mean and std params for, e.g., a list of columns without looping or creating a separate transform for each.
The text was updated successfully, but these errors were encountered: