I am trying to filter a column X and get all the missing weeks data.
For example, a df (sample date, where in actual df we will have whole week's data):
mean_date column X
2021-04-01 x_123
2021-04-01 y_324
2021-04-02 x_123
2021-04-03 x_123
I need to find all the missing dates for a corresponding column X in the current week, i.e.
result_df:
mean_date_missing column_X
2021-03-28 x_123
2021-03-29 x_123
2021-03-30 x_123
2021-03-31 x_123
..
2021-03-28 y_324
2021-03-29 y_324
2021-03-30 y_324
2021-03-31 y_324
2021-04-02 y_324
2021-04-03 y_324