我有一个这样的数据框(时间戳只包含从 9:00 到 20:00)
0 2020-05-18 10:18:00
1 2020-05-18 10:19:00
2 2020-05-18 10:20:00
3 2020-05-18 10:21:00
4 2020-05-18 10:22:00
...
? 2020-07-20 12:00:00
Name: Time, dtype: datetime64[ns]
我有几天的清单(在“incomplete_days”中)我想在 df 中排除
0 2020-05-18
1 2020-05-19
3 2020-05-21
4 2020-05-22
5 2020-05-23
6 2020-05-24
Name: Time, dtype: datetime64[ns]
我简单地尝试过,
df[df['Time'] != incomplete_days]
但是,错误说
ValueError: Can only compare identically-labeled Series objects
我应该用天数列表制作一个时间戳(1 分钟分辨率)以在 df 中排除它们吗?如果是这样,我怎样才能在给定的日子里安排开始时间和结束时间?
有什么办法可以让我不需要用 1 分钟的分辨率制作时间戳吗?
(我已经从 20:01 到 08:59 删除了不相关的时间,并在 df 中保留了从 09:00 到 20:00 的时间。我不想再次使用要排除的天数列表制作每小时时间戳。我使用了以下变量来减少不相关的时间)
start = time(6)
end = time(20)
-----编辑我做了
df['Time'].dt.date
给
0 2020-05-18
1 2020-05-18
2 2020-05-18
3 2020-05-18
4 2020-05-18
...
110077 2020-08-02
110078 2020-08-02
110079 2020-08-02
110080 2020-08-02
110081 2020-08-02
Name: Time, Length: 69042, dtype: object
和
list_incomplete=incomplete_days.tolist()
list_incomplete
给
[Timestamp('2020-05-18 00:00:00'),
Timestamp('2020-05-19 00:00:00'),
Timestamp('2020-05-21 00:00:00'),
Timestamp('2020-05-22 00:00:00'),
Timestamp('2020-05-23 00:00:00'),
Timestamp('2020-05-24 00:00:00'),
Timestamp('2020-05-25 00:00:00'),
Timestamp('2020-05-26 00:00:00'),
Timestamp('2020-05-27 00:00:00'),
Timestamp('2020-05-28 00:00:00'),
Timestamp('2020-05-29 00:00:00'),
Timestamp('2020-05-30 00:00:00'),
Timestamp('2020-05-31 00:00:00'),
Timestamp('2020-06-01 00:00:00'),
Timestamp('2020-06-02 00:00:00'),
Timestamp('2020-06-03 00:00:00'),
Timestamp('2020-06-10 00:00:00'),
Timestamp('2020-07-02 00:00:00'),
Timestamp('2020-07-05 00:00:00'),
Timestamp('2020-07-06 00:00:00')]
当我做
df.drop([df['Time'].dt.date not in incomplete_days],inplace=True)
我收到以下错误。
TypeError: 'Series' objects are mutable, thus they cannot be hashed
我看到它非常接近但出了点问题..
牛魔王的故事
相关分类