| [ Web Proxy ] |
| Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.Series.aggregate.html | [Back] [Original] |
Section Navigation
Aggregate using one or more operations over the specified axis.
Examples:
>>> s = bpd.Series([1, 2, 3, 4])
>>> s
0 1
1 2
2 3
3 4
dtype: Int64
>>> s.agg('min')
np.int64(1)
>>> s.agg(['min', 'max'])
min 1
max 4
dtype: Int64
func (function) Function to use for aggregating the data.
Accepted combinations are: string function name, list of
function names, e.g. ['sum', 'mean'].
Aggregated results.
scalar or bigframes.pandas.Series
Copyright 2019, Google.
Created using Sphinx 8.1.3.
Built with the PyData Sphinx Theme 0.19.0.
| Web Proxy Viewer | New URL | Original Page |