當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas TimedeltaIndex.round用法及代碼示例


Python是進行數據分析的一種出色語言,主要是因為以數據為中心的python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。

Pandas TimedeltaIndex.round()函數將給定TimedeltaIndex對象的標簽四舍五入到指定頻率。

用法: TimedeltaIndex.round(freq, *args, **kwargs)

參數:
freq:頻率字符串/對象

返回:相同類型的索引

範例1:采用TimedeltaIndex.round()函數舍入給定TimedeltaIndex對象的標簽。

# importing pandas as pd 
import pandas as pd 
  
# Create the TimedeltaIndex object 
tidx = pd.TimedeltaIndex(data =['06:05:01.000030', None, '22 day 2 min 3us 10ns', 
                     '+23:59:59.999999', None, '+12:19:59.999999'], name ='Old') 
  
# Print the TimedeltaIndex object 
print(tidx)

輸出:

現在我們將使用TimedeltaIndex.round()用於將tidx對象的標簽四舍五入到每分鍾一次的頻率。

# round the labels of the tidx 
# object to minutely frequency 
tidx.round('T')

輸出:

正如我們在輸出中看到的,TimedeltaIndex.round()函數已將給定TimedeltaIndex對象的值四舍五入為所需頻率。

範例2:采用TimedeltaIndex.round()函數重命名給定的TimedeltaIndex對象。

# importing pandas as pd 
import pandas as pd 
  
# Create the TimedeltaIndex object 
tidx = pd.TimedeltaIndex(data =[None, '1 days 06:05:01.000030', None, 
                                '1 days 02:00:00', '21 days 06:15:01.000030'], 
                                                           name ='Old_object') 
  
# Print the TimedeltaIndex object 
print(tidx)

輸出:

現在我們將使用TimedeltaIndex.round()函數將tidx對象的標簽四舍五入為每日頻率。

# round the labels of the tidx  
# object to daily frequency 
tidx.round('D')

輸出:

正如我們在輸出中看到的,TimedeltaIndex.round()函數已將給定TimedeltaIndex對象的值四舍五入為所需頻率。



相關用法


注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas TimedeltaIndex.round。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。