I am running a notebook on some golf stats that I found. In the example, it has 2018 and 2019 stats in the model. If I want to add 2020 and 2021 to the data, how do I go about with the following code:
df_stats = df_2018.join(df_2019, how='outer', lsuffix='_2018', rsuffix='_2019')
No Coding experience FYI Thanks