Standard Scaler
This function scales a column by removing the mean and scaling by standard deviation.
If you omit averages and standarddevs, the function will compute the average and standard deviation of each column. Pass averages and standarddevs values if you want to override the calculation with static values for each column.
Parameters
Name | Type | Description | Is Optional |
---|---|---|---|
columns_to_scale | column_list | A list of numeric columns that you want to scale | |
averages | value_list | An optional argument representing a list of the static averages to use for each column in columns_to_scale. If omitted, the averages are calculated directly off each column. | True |
standarddevs | int_list | An optional argument representing a list of the static standard deviations to use for each column in columns_to_scale. If omitted, the values are calculated directly off each column. | True |
overwrite_columns | boolean | Optional: if true, the scaled values will overwrite values in 'columns_to_scale'. If false, new columns with the scaled values will be generated. | True |
Example
Source Code
Last updated