Python是進行數據分析的一種出色語言,主要是因為以數據為中心的python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。
Pandas TimedeltaIndex.shape
屬性返回存在於所考慮對象中的基礎數據形狀的元組。
用法: TimedeltaIndex.shape
返回:形狀
示例1:采用TimedeltaIndex.shape
屬性以找出給定對象中基礎數據的形狀。
# importing pandas as pd
import pandas as pd
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(start ='1 days 02:00:12.001124', periods = 5,
freq ='N', name ='Koala')
# Print the TimedeltaIndex
print(tidx)
輸出:
現在,我們將找出給定對象的形狀。
# print the shape of the tidx object
tidx.shape
輸出:
正如我們在輸出中看到的,TimedeltaIndex.shape
屬性返回了(5,),它是tidx對象的基礎數據的形狀。
示例2:采用TimedeltaIndex.shape
屬性以找出給定對象中基礎數據的形狀。
# importing pandas as pd
import pandas as pd
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(data =['-1 days 2 min 3us 10ns', '1 days 06:05:01.000030',
'-1 days + 23:59:59.999999'])
# Print the TimedeltaIndex
print(tidx)
輸出:
現在,我們將找出給定對象的形狀。
# print the shape of the tidx object
tidx.shape
輸出:
正如我們在輸出中看到的,TimedeltaIndex.shape
屬性返回了(3,),它是tidx對象的基礎數據的形狀。
相關用法
- Python pandas.map()用法及代碼示例
- Python Pandas.pivot_table()用法及代碼示例
- Python Pandas Timestamp.now用法及代碼示例
- Python Pandas.pivot()用法及代碼示例
- Python Pandas.melt()用法及代碼示例
- Python Pandas Timestamp.dst用法及代碼示例
- Python Pandas Index.max()用法及代碼示例
- Python Pandas.CategoricalDtype()用法及代碼示例
- Python Pandas Index.all()用法及代碼示例
- Python Pandas Index.any()用法及代碼示例
- Python Pandas Timestamp.tz用法及代碼示例
- Python Pandas Timestamp.second用法及代碼示例
- Python Pandas Series.mul()用法及代碼示例
- Python Pandas Series.div()用法及代碼示例
- Python Pandas Series.pow()用法及代碼示例
注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas TimedeltaIndex.shape。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。