Pandas DataFrame 索引属性
定义和用法
The index
属性返回 DataFrame 的索引信息。
索引信息包含行的标签。如果行没有命名索引,则 index
属性返回一个 RangeIndex 对象,其中包含起始、结束和步长值。
语法
dataframe.index
返回值
一个 Pandas Index 对象,包含行的标签。
或者
一个 Pandas RangeIndex 对象,包含起始、结束和步长索引。
The index
属性返回 DataFrame 的索引信息。
索引信息包含行的标签。如果行没有命名索引,则 index
属性返回一个 RangeIndex 对象,其中包含起始、结束和步长值。
dataframe.index
一个 Pandas Index 对象,包含行的标签。
或者
一个 Pandas RangeIndex 对象,包含起始、结束和步长索引。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]