class pandas.RangeIndex
[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.
This is the default index type used by DataFrame and Series when no explicit index is provided by the user.
Parameters: |
|
---|
See also
Index
Int64Index
start | The value of the start parameter (0 if this was not supplied) |
stop | The value of the stop parameter |
step | The value of the step parameter (1 if this was not supplied) |
from_range (data[, name, dtype]) | Create RangeIndex from a range object. |
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.25.0/reference/api/pandas.RangeIndex.html