I have two dataframes which I need to concat but for some reason the usual concat, append, joins and merge are all failing;
df1
A B C D E F
01/02/2021 2 3 4 3 5 3
.
.
.
10/02/2021 3 4 5 6 7 8 9
df2
A B C
11/02/2021 3 5 4
12/02/2021 4 6 4
.
.
.
17/04/2021 4 5 3
The second dataframe has values for only 3 of the variables that the first dataframe has but I didn't think this would be an issue if it was joined on the index?
Tried this and getting the below error;
df3 = pd.concat([df,df2], axis=0, ignore_index=True)
ValueError: Plan shapes are not aligned
Any help much appreciated!