pandas.RangeIndex — pandas 1.4.1 documentation
pandas.pydata.org › api › pandaspandas.RangeIndex ¶ class pandas.RangeIndex(start=None, stop=None, step=None, dtype=None, copy=False, name=None) [source] ¶ Immutable Index implementing a monotonic integer range. RangeIndex is a memory-saving special case of Int64Index limited to representing monotonic ranges. Using RangeIndex may in some instances improve computing speed.
Python Pandas - How to create a RangeIndex
www.tutorialspoint.com › python-pandas-how-toOct 14, 2021 · To create a RangeIndex, use the pandas.RangeIndex () method in Pandas. At first, import the required libraries − import pandas as pd RangeIndex is a memory-saving special case of Int64Index limited to representing monotonic ranges. Using RangeIndex may in some instances improve computing speed. Create a range index with start, stop and step.