[ Web Proxy ]
URL:
Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.Series.values.html [Back]  [Original]

bigframes.pandas.Series.values — bigframes documentation
Back to top
Search the docs ...:

bigframes.pandas.Series.values#

property Series.values: ndarray#

Return Series as ndarray or ndarray-like depending on the dtype.

Examples:

>>> bpd.Series([1, 2, 3]).values
array([1, 2, 3])
>>> bpd.Series(list('aabc')).values
array(['a', 'a', 'b', 'c'], dtype=object)
Returns:

Values in the Series.

Return type:

numpy.ndarray or ndarray-like


Web Proxy Viewer  |  New URL  |  Original Page