pandas两个DataFrames与multipindex,加在一起?

时间:2017-02-17 05:08:56

标签: pandas

我们知道数据框可以按索引添加其他数据框。 虽然我有两个带有多索引的数据帧,但我怎么能按级别添加它们' a'在索引中。

data3.head()
        c   d   e
a  b
0  1    2   3   4
5  6    7   8   9
10 11  12  13  14
15 16  17  18  19
20 21  22  23  24
data4.head()
        b   d   e
a  c             
0  2    1   3   4
5  7    6   8   9
10 12  11  13  14
15 17  16  18  19
20 22  21  23  24
25 27  26  28  29
data3 + data4
error:merging with both multi-indexes is not implemented

0 个答案:

没有答案