pandas.
RangeIndex
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.
If int and “stop” is not given, interpreted as “stop” instead.
Name to be stored in the index.
Unused, accepted for homogeneity with other index types.
See also
Index
The base pandas Index type.
Int64Index
Index of int64 data.
Attributes
start
The value of the start parameter (0 if this was not supplied).
0
stop
The value of the stop parameter.
step
The value of the step parameter (1 if this was not supplied).
1
Methods
from_range(data[, name, dtype])
from_range
Create RangeIndex from a range object.