Skip to content
Advertisement

Delete rows with date’s before the required date point based on key value

I have a pd.dataframe that looks like this:

JavaScript

So now based on the key_value,

I want to drop all the rows that have their date column value before 2018-04-01

I want to have an end output like this:

JavaScript

Advertisement

Answer

You can just filter your dataframe using Boolean indexing. There is no groupwise operation here. Just remember to convert your series to datetime first.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement