normalize(input: number, {
    "param": value,
    ...
}) -> (output: number)

The resulting column’s values will have a mean of 0.0 and a standard deviation of 1.0. Both types of scaling can be toggled separately via the with_mean and with_std parameters.

normalize(input: number, {
    "param": value,
    ...
}) -> (output: number)
with_mean
boolean
default:
"true"

Whether to subtract the mean.

with_std
boolean
default:
"true"

Whether to divide by the standard deviation.