- Learning pandas(Second Edition)
- Michael Heydt
- 195字
- 2021-07-02 20:37:09
The .index and .values properties
Each Series object consists of a series of values and an index. The values can be accessed through the .values property:

The result from is a NumPy array object, as the following verifies:

This is called out for informational purposes. We will not examine NumPy arrays in this book. Historically, pandas did use NumPy arrays under the covers, so NumPy arrays were more important in the past, but this dependency has been removed in recent versions. But as a convenience, .values returns a NumPy array even if the underlying representation is not a NumPy array.
In addition, the index for the series can be retrieved using .index:

The type of index created by pandas is RangeIndex. This is a change in pandas from the previous version of this book, when this type of index did not exist. The RangeIndex object represents a range of values from the start to the stop value with the specified step. This is efficient for pandas, compared to the previously utilized Int64Index.
The RangeIndex is simply one type of the indexes that we will explore (much of the detail in is Chapter 6, Indexing Data).
推薦閱讀
- 程序設計與實踐(VB.NET)
- Hands-On Machine Learning with scikit:learn and Scientific Python Toolkits
- Learning AndEngine
- 精通Linux(第2版)
- 零基礎入門學習Python(第2版)
- C++從入門到精通(第5版)
- PHP從入門到精通(第4版)(軟件開發視頻大講堂)
- Learning Unreal Engine Android Game Development
- 輕松上手2D游戲開發:Unity入門
- PHP動態網站開發實踐教程
- Scala編程(第4版)
- PHP典型模塊與項目實戰大全
- Java與Android移動應用開發:技術、方法與實踐
- 狼書(卷2):Node.js Web應用開發
- Unreal Engine 4 Game Development Essentials