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


Python Pandas DataFrame first方法用法及代碼示例


Pandas DataFrame.first(~) 方法返回前 n 天(或您指定的任何時間單位)內的所有行,其中 n 是指定的偏移量。

參數

1.offset | stringDateOffsetdateutil.relativedelta

日期時間偏移量。

返回值

一個DataFrame

例子

考慮以下 DataFrame :

index_datetime = pd.date_range("2020-12-25", periods=5, freq="D")   # Days
df = pd.DataFrame({"A":["a","b","c","d","e"]}, index=index_datetime)
df



            A
2020-12-25  a
2020-12-26  b
2020-12-27  c
2020-12-28  d
2020-12-29  e

要獲取前 3 天:

df.first("3D")



            A
2020-12-25  a
2020-12-26  b
2020-12-27  c

相關用法


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