4

在将三个 DataFrame 与 pandas 连接后,我正在尝试编写一个 xls 文件

qq=rand(3,3)
qqq=pd.DataFrame(qq)
q=pd.concat([qqq,qqq,qqq],axis=1)
q.to_excel('foo.xlsx')#it's the same with xls

我获得的输出是:(第一行有列名,第一列有行名)

    0   1   2   0   1   2   0   1   2
0   0   1   2   0   1   2   0   1   2
1   0   1   2   0   1   2   0   1   2
2   0   1   2   0   1   2   0   1   2

我究竟做错了什么?

4

1 回答 1

3

这已通过https://github.com/pydata/pandas/issues/5235在当前主服务器中修复

于 2013-11-06T14:34:40.273 回答