xorbits.pandas.Series.ravel#

Series.ravel(order: str = 'C') Union[pandas.core.arrays.base.ExtensionArray, numpy.ndarray][source]#

Return the flattened underlying data as an ndarray or ExtensionArray.

Returns

Flattened data of the Series.

Return type

numpy.ndarray or ExtensionArray

See also

numpy.ndarray.ravel

Return a flattened array.

Warning

This method has not been implemented yet. Xorbits will try to execute it with pandas.

This docstring was copied from pandas.core.series.Series.