I have a strange problem when merging 2 dataframes. Although both dataframe contain values along the whole index, the merged on has only shows values in one column, e.g. for one of the orginal dataframes.
Please see the pictures below for clarification:


As you can see, the index is the same and there are values. I tried to merge, concat and append but I always have the same issue.
Does anybody of you have a clue? Thank you very much in advance! Sebastian
pd.set_option('display.notebook_repr_html', False)df1.merge(df2, left_index=True, right_index=True, how='outer')pd.concat([df1, df2], axis=1)