Skip to content

Tag: dataframe

Filter dataframe per ID based on conditional timerange

Hi I will try to explain the issue I am facing. I have one dataframe (df) with the following: ID Date (dd-mm-yyyy) AAA 01-09-2020 AAA 01-11-2020 AAA 18-03-2021 AAA 10-10-2022 BBB 01-01-2019 BBB 01-03-2019 CCC 01-05-2020 CCC 01-07-2020 CCC 01-08-2020 CCC 01-10-2021 I have created another dataframe (df2) with t…

How to group by month and year from a specific range?

The data have reported values for January 2006 through January 2019. I need to compute the total number of passengers Passenger_Count per month. The dataframe should have 121 entries (10 years * 12 months, plus 1 for january 2019). The range should go from 2009 to 2019. I have been doing: But it doesn’t…