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