简体   繁体   English

如何从大型数据框中删除特定日期时间戳

[英]How to remove specific day timestamps from a big dataframe

I have a big dataframe consisting of 600 days worth of data. 我有一个包含600天数据的大数据框。 Each day has 100 timestamps. 每天有100个时间戳。 I have a separate list of 30 days from which I want to data. 我有一个30天的单独列表,我想从中获取数据。 How do I remove data from these 30 days from the dataframe? 如何从数据框中删除这30天内的数据? I tried a for loop, but it did not work. 我尝试了一个for循环,但它没有用。 I know there is a simple method. 我知道有一个简单的方法。 But I don't know how to implement it. 但我不知道如何实现它。

df #is main dataframe which has many columns and rows. Index is a timestamp. 

df['dates'] = df.index.strftime('%Y-%m-%d') # date part of timestamp is sliced and  
#a new column is created. Instead of index, I want to use this column for comparing with bad list. 
bad_list # it is a list of bad dates   
for i in range(0,len(df)):
    for j in range(0,len(bad_list)):
        if str(df['dates'][i])== bad_list[j]:
            df.drop(df[i].index,inplace=True)

You can do the following 您可以执行以下操作

df['dates'] = df.index.strftime('%Y-%m-%d') 
#badlist should be in date format too. 

newdf = df[~df['dates'].isin(badlist)]
# the ~ is used to denote "not in" the list.

#if Jan 1, 2000 is a bad date, it should be in the list as datetime(2000,1,1)

You can perform simple comparison: 你可以进行简单的比较:

>>> dates = pd.Series(pd.to_datetime(np.random.randint(int(time()) - 60 * 60 * 24 * 5, int(time()), 12), unit='s'))
>>> dates
0    2019-03-19 05:25:32
1    2019-03-20 00:58:29
2    2019-03-19 01:03:36
3    2019-03-22 11:45:24
4    2019-03-19 08:14:29
5    2019-03-21 10:17:13
6    2019-03-18 09:09:15
7    2019-03-20 00:14:16
8    2019-03-21 19:47:02
9    2019-03-23 06:19:35
10   2019-03-23 05:42:34
11   2019-03-21 11:37:46

>>> start_date = pd.to_datetime('2019-03-20')
>>> end_date = pd.to_datetime('2019-03-22')
>>> dates[(dates > start_date) & (dates < end_date)]
1    2019-03-20 00:58:29
5    2019-03-21 10:17:13
7    2019-03-20 00:14:16
8    2019-03-21 19:47:02
11   2019-03-21 11:37:46

If your source Series is not in datetime format, then you will need to use pd.to_datetime to convert it. 如果源Series不是datetime格式,则需要使用pd.to_datetime进行转换。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM