Class Window (0.14.1)

Window(
 block: bigframes.core.blocks.Block,
 window_spec: bigframes.core.window_spec.WindowSpec,
 value_column_ids: typing.Sequence[str],
 drop_null_groups: bool = True,
 is_series: bool = False,
)

Provide window calculations.

Methods

count

count()

Calculate the window count of non-NULL observations.

max

max()

Calculate the weighted window maximum.

mean

mean()

Calculate the weighted window mean.

min

min()

Calculate the weighted window minimum.

std

std()

Calculate the weighted window standard deviation.

sum

sum()

Calculate the weighted window sum.

var

var()

Calculate the weighted window variance.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年10月27日 UTC.