gpt4 book ai didi

python - str 包含 datetime64 pandas 的等价物

转载 作者:太空宇宙 更新时间:2023-11-04 07:49:55 25 4
gpt4 key购买 nike

我有一堆数据如下,我只想要 2019 年的条目。

+----------+
| Date |
+----------+
| 20190329 |
| 20180331 |
| 20190331 |
| 20180331 |
| 20190401 |
+----------+

日期类型是 datetime64[ns]。我在检查类型之前尝试了 df = df[df['Date'].str.contains('2019')] 并给出了 AttributeError: Can only use .str accessor带有字符串值,在 pandas 中使用 np.object_ dtype

有替代方案吗?

最佳答案

看起来您有一列整数。在这种情况下,我推荐的解决方案是转换为日期时间,然后您将访问年份属性:

pd.to_datetime(df['Date'].astype(str)).dt.year == 2019  # you compare ints

0 True
1 False
2 True
3 False
4 True
Name: Date, dtype: bool

df[pd.to_datetime(df['Date'].astype(str)).dt.year == 2019]

Date
0 20190329
2 20190331
4 20190401

另一种选择(稍微快一些,但我不喜欢这样,因为可能会被滥用)是对字符串进行切片并进行比较:

df['Date'].astype(str).str[:4] == '2019'  # you compare strings

0 True
1 False
2 True
3 False
4 True
Name: Date, dtype: bool

关于python - str 包含 datetime64 pandas 的等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56451892/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com