""" https://stackoverflow.com/questions/60339049/weekday-name-from-a-pandas-dataframe-date-object I refered to this since the weekday_name command that was included in the helper code was depricated
https://cmdlinetips.com/2018/02/how-to-subset-pandas-dataframe-based-on-values-of-a-column/ This helped me derive the syntax for boolean expressions in dataframe indexing
https://www.listendata.com/2019/07/how-to-filter-pandas-dataframe.html documentation about the different ways we can use to filter dataframes by column values
https://pandas.pydata.org/pandas-docs/stable/reference/arrays.html#datetime-data documentation about the built-in methods of dataframes, including the datetime method
https://stackoverflow.com/questions/53037698/how-can-i-find-the-most-frequent-two-column-combination-in-a-dataframe-in-python finding the index of the most commonly occurring pair of values in two columns """