在将三个 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
我究竟做错了什么?