I am trying to concat dataframes from the following two 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?
pandas==0.17.1andconcatworks fine.print df_a.columns == df_b.columnsand output:[ True True True True True True True True True True True True True True False False True False True False False]