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') NrĶ