Range("A1").value = p.df_sector[["A","B","C"]].sort(columns=["C"],ascending=False).head(4)
效果很好!但是 - 我不想/不需要看到这个index
专栏
p.df_sector[["A","B","C"]].sort(columns=["C"],ascending=False).head(4).to_string(index=False)
会做我需要的,但是数据会存储在一个单元格中!
.to_matrix()
做我需要的,但后来我失去了我的标题(我需要)。
关于如何转储df
带 标题和不带索引的任何输入?