• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

交换两个DataFrame列?

用户头像
it1352
帮助1

问题说明

在MATLAB中,要交换表A的第一和第二列,可以这样做 1

In MATLAB, to swap the first and second columns of a table A, one would do this1

A = A(:, [2 1 3:end]);

如果A是大熊猫DataFrame,还有类似的便捷方法吗?

Is there a similarly convenient way to do this if A were a pandas DataFrame instead?

1 MATLAB使用基于1的索引.

1 MATLAB uses 1-based indexing.

正确答案

#1

pandas具有执行此操作的reindex方法.您只需要按所需顺序提供一个列名列表:

pandas has reindex method that does it. You just need to give a list with the column names in the order you wish:

columns_titles = ["B","A"]
df=df.reindex(columns=columns_titles)

欢呼

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfjeec
系列文章
更多 icon
同类精品
更多 icon
继续加载