gpt4 book ai didi

python - 从数据框列中删除特定的一天(Pandas)

转载 作者:行者123 更新时间:2023-11-30 22:40:39 25 4
gpt4 key购买 nike

这是我的数据框(时间是索引):

                     price
time
2015-11-07 00:00:00 180.250000
2015-11-07 00:15:00 176.350000
2015-11-07 00:30:00 177.533333
2015-11-08 00:45:00 180.216667

我想删除“2015-11-07”当天的所有条目,所以我尝试了:

remove = df.loc['2015-11-07]
df.drop(remove)

但我收到此错误labels ['price'] not contains in axis

最佳答案

您需要通过名为removeDataFrameindex进行删除:

remove = df.loc['2015-11-07']
print (remove)
price
time
2015-11-07 00:00:00 180.250000
2015-11-07 00:15:00 176.350000
2015-11-07 00:30:00 177.533333

print (df.drop(remove.index))
price
time
2015-11-08 00:45:00 180.216667

另一个解决方案:

idx = df.index.difference(df.loc['2015-11-07'].index)
print (idx)
DatetimeIndex(['2015-11-08 00:45:00'], dtype='datetime64[ns]', name='time', freq=None)

print (df.loc[idx])
price
time
2015-11-08 00:45:00 180.216667

关于python - 从数据框列中删除特定的一天(Pandas),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42855901/

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