如何从带有时间戳索引的数据帧中删除某个时间段?

时间:2018-08-20 20:44:13

标签: python pandas

我有一个类似这样的DataFrame:

Datetime             Open   Low/Open  Close/Open  Tar

1998-01-30 15:30:00  68.02  0.997501    0.999706    0
1998-01-30 15:45:00  67.91  0.998086    1.000736    0
1998-01-30 16:00:00  67.96  0.998676    1.000589    0
1998-01-30 16:15:00  67.96  1.000000    1.000000    0

时间戳是24小时,但是,我只希望索引在9:30:00到16:00:00之间的数据点。如何删除我需要的所有数据点?

1 个答案:

答案 0 :(得分:1)

任何datetime列的后缀instance.data具有数组友好的例程。

instance

从您的样本中,我得到:

.dt