当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。