您知道如何在pandas列名称中进行换行吗?我有一些带有长标签的列,我想在显示数据帧时打破它们。像这样的东西似乎不起作用。
pd.DataFrame({'this is \n colummn A':[1,2,3], 'this is \n colummn B':[3,4,5]})
this is colummn A this is colummn B
0 1 3
1 2 4
2 3 5