gpt4 book ai didi

python - 将 Pandas 数据框中的列移动到大型数据框中的最后一列的最佳方法

转载 作者:太空宇宙 更新时间:2023-11-04 07:48:59 33 4
gpt4 key购买 nike

我有一个包含 100 多列的 pandas 数据框。例如在下面的 df 中:

df['A','B','C','D','E','date','G','H','F','I']

如何将日期移到最后一列?假设数据框很大,我无法手动编写所有列名。

最佳答案

你可以试试这个:

new_cols = [col for col in df.columns if col != 'date'] + ['date']
df = df[new_cols]

测试数据:

cols = ['A','B','C','D','E','date','G','H','F','I']
df = pd.DataFrame([np.arange(len(cols))],
columns=cols)

print(df)
# A B C D E date G H F I
# 0 0 1 2 3 4 5 6 7 8 9

代码输出:

   A  B  C  D  E  G  H  F  I  date
0 0 1 2 3 4 6 7 8 9 5

关于python - 将 Pandas 数据框中的列移动到大型数据框中的最后一列的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58228837/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com