xorbits.pandas.Index.ravel#

final Index.ravel(order: str = 'C') None[source]#

Return a view on self.

Return type

Index

See also

numpy.ndarray.ravel

Return a flattened array.

Examples

>>> s = pd.Series([1, 2, 3], index=['a', 'b', 'c'])  
>>> s.index.ravel()  
Index(['a', 'b', 'c'], dtype='object')

Warning

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

This docstring was copied from pandas.core.indexes.base.Index.