I have 2 dataframes, containing same indexes and same column names (10 columns For example: from df1
A B C
1 0 4 8
2 5 6 9
3 2 5 1
from df2:
A B C
1 9 4 5
2 1 4 2
3 5 5 1
I want to plot on the same graph, column A from df1 vs column A from df2, column B from df1 vs column B from df2, etc..and this for every column. how could I do that with pandas and matplotlib