Class StandardScaler (0.2.0)

StandardScaler()

Standardize features by removing the mean and scaling to unit variance.

The standard score of a sample x is calculated as:z = (x - u) / s where u is the mean of the training samples or zero if with_mean=False, and s is the standard deviation of the training samples or one if with_std=False.

Centering and scaling happen independently on each feature by computing the relevant statistics on the samples in the training set. Mean and standard deviation are then stored to be used on later data using transform.

Standardization of a dataset is a common requirement for many machine learning estimators: they might behave badly if the individual features do not more or less look like standard normally distributed data (e.g. Gaussian with 0 mean and unit variance).

Methods

__repr__

__repr__()

Print the estimator's constructor with all non-default parameter values

fit

fit(
    X: typing.Union[bigframes.dataframe.DataFrame, bigframes.series.Series], y=None
) -> bigframes.ml.preprocessing.StandardScaler

Compute the mean and std to be used for later scaling.

Examples:

from bigframes.ml.preprocessing import StandardScaler

enc = StandardScaler()
X = [['Male', 1], ['Female', 3], ['Female', 2]]
enc.fit(X)

Examples:

from bigframes.ml import StandardScaler

enc = StandardScaler()
X = [['Male', 1], ['Female', 3], ['Female', 2]]
enc.fit(X)
Parameter
NameDescription
X bigframes.dataframe.DataFrame or bigframes.series.Series

The Dataframe or Series with training data.

Returns
TypeDescription
StandardScalerFitted scaler.

fit_transform

fit_transform(
    X: typing.Union[bigframes.dataframe.DataFrame, bigframes.series.Series],
    y: typing.Optional[
        typing.Union[bigframes.dataframe.DataFrame, bigframes.series.Series]
    ] = None,
) -> bigframes.dataframe.DataFrame

API documentation for fit_transform method.

get_params

get_params(deep: bool = True) -> typing.Dict[str, typing.Any]

Get parameters for this estimator.

Parameter
NameDescription
deep bool, default True

Default True. If True, will return the parameters for this estimator and contained subobjects that are estimators.

Returns
TypeDescription
DictionaryA dictionary of parameter names mapped to their values.

transform

transform(
    X: typing.Union[bigframes.dataframe.DataFrame, bigframes.series.Series]
) -> bigframes.dataframe.DataFrame

Perform standardization by centering and scaling.

Parameter
NameDescription
X bigframes.dataframe.DataFrame or bigframes.series.Series

The DataFrame or Series to be transformed.

Returns
TypeDescription
bigframes.dataframe.DataFrameTransformed result.