Home >Backend Development >Python Tutorial >How to Filter Pandas DataFrames by Date Within the Next Two Months?
Filter Pandas DataFrames on Dates
Problem:
You want to extract rows from a DataFrame that fall within a specific date range, excluding dates outside that range. In this case, you need to keep rows within the next two months.
Solution:
There are several approaches to filtering Pandas DataFrames based on dates:
1. Index-Based Indexing (If 'date' Column is the Index):
df.loc['2023-04-01':'2023-06-01']
df.iloc[start_index:end_index] # Select rows by position
2. Non-Index-Based Indexing (If 'date' Column is Not the Index):
df.set_index('date', inplace=True)
df[(df['date'] > '2023-04-01') & (df['date'] < '2023-06-01')]
Note:
The above is the detailed content of How to Filter Pandas DataFrames by Date Within the Next Two Months?. For more information, please follow other related articles on the PHP Chinese website!