Pandas 索引是一个不变的ndarray,它实现了有序的,可切片的集合。它是存储所有 Pandas 对象的轴标签的基本对象。
Pandas Index.shape
属性返回给定Index对象中基础数据形状的元组。
用法: Index.shape
参数:没有
返回:元组
范例1:采用Index.shape
属性以返回给定Index对象中基础数据形状的元组。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['Melbourne', 'Sanghai', 'Lisbon', 'Doha', 'Moscow', 'Rio'])
# Print the index
print(idx)
输出:
现在我们将使用Index.shape
属性以返回给定Index对象中基础数据形状的元组。
# return a tuple of the shape
# of data in idx object
result = idx.shape
# Print the result
print(result)
输出:
正如我们在输出中看到的,Index.shape
属性已根据给定Index对象中基础数据的大小返回一个元组。
范例2:采用Index.shape
属性以返回给定Index对象中基础数据形状的元组。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index([900 + 3j, 700 + 25j, 620 + 10j, 388 + 44j, 900])
# Print the index
print(idx)
输出:
现在我们将使用Index.shape
属性以返回给定Index对象中基础数据形状的元组。
# return a tuple of the shape
# of data in idx object
result = idx.shape
# Print the result
print(result)
输出:
正如我们在输出中看到的,Index.shape
属性已根据给定Index对象中基础数据的大小返回一个元组。
相关用法
- Python pandas.map()用法及代码示例
- Python Pandas Timestamp.now用法及代码示例
- Python Pandas Timestamp.second用法及代码示例
- Python Pandas DataFrame.abs()用法及代码示例
- Python Pandas Series.lt()用法及代码示例
- Python Pandas dataframe.all()用法及代码示例
- Python Pandas DataFrame.ix[ ]用法及代码示例
- Python Pandas Series.pop()用法及代码示例
- Python Pandas TimedeltaIndex.max用法及代码示例
- Python Pandas Timestamp.dst用法及代码示例
- Python Pandas Timestamp.tz用法及代码示例
- Python Pandas Series.mean()用法及代码示例
- Python Pandas TimedeltaIndex.min用法及代码示例
- Python Pandas Series.ptp()用法及代码示例
- Python Pandas dataframe.cov()用法及代码示例
注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas Index.shape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。