I was practicing with a data set and I wanted to filter the dataframe by date column but can't figure out how to do it
i've tried this code to do so: mask = (df['Date'] >= '01/01/2015') & (df['Date'] <= '31/01/2015') filtered_df=df.loc[mask] filtered_df.head()