I am trying to concat dataframes based on the foll. 2 csv files:
df_a: https://www.dropbox.com/s/slcu7o7yyottujl/df_current.csv?dl=0
df_b: https://www.dropbox.com/s/laveuldraurdpu1/df_climatology.csv?dl=0
Both of these have the same number and names of columns. However, when I do this:
pandas.concat([df_a, df_b])
I get the error:
AssertionError: Number of manager items must equal union of block items
# manager items: 20, # tot_items: 21
How to fix this?