gpt4 book ai didi

python - 如何在 python 中用数字重命名多个列?

转载 作者:行者123 更新时间:2023-11-28 17:27:28 26 4
gpt4 key购买 nike

我有一个包含约 2400 列的数据框,我想将所有列从 1 重命名为 2400
我当前的列名称是数字,几乎所有列都是重复的。

我正在尝试类似的方法,但它不起作用:

# An example
import pandas as pd
# Create an example dataframe
data = {'Commander': ['Jason', 'Molly', 'Tina', 'Jake', 'Amy'], 'Date': ['2012, 02, 08', '2012, 02, 08', '2012, 02, 08', '2012, 02, 08', '2012, 02, 08'],'Score': [4, 24, 31, 2, 3]}
df = pd.DataFrame(data, index = ['Cochice', 'Pima', 'Santa Cruz', 'Maricopa', 'Yuma'])

ncol = len(df.columns)
for col in df.columns :
for i in range(ncol) :
df.rename(columns={col: str(i)}, inplace=True)

提前谢谢你。

最佳答案

IIUC 你可以做到

df.columns = pd.Index(np.arange(1,len(df.columns)+1).astype(str)

所以这只是用从 np.arange 生成的新 Index 对象覆盖列,我们使用 将 dtype 转换为 str >astype

例子:

In [244]:
df = pd.DataFrame(np.random.randn(4,4))
df.columns

Out[244]:
RangeIndex(start=0, stop=4, step=1)

In [243]:
df.columns = pd.Index(np.arange(1,len(df.columns)+1)).astype(str)
df.columns

Out[243]:
Index(['1', '2', '3', '4'], dtype='object')

以你的例子为例:

In [245]:
data = {'Commander': ['Jason', 'Molly', 'Tina', 'Jake', 'Amy'], 'Date': ['2012, 02, 08', '2012, 02, 08', '2012, 02, 08', '2012, 02, 08', '2012, 02, 08'],'Score': [4, 24, 31, 2, 3]}
df = pd.DataFrame(data, index = ['Cochice', 'Pima', 'Santa Cruz', 'Maricopa', 'Yuma'])
df.columns = pd.Index(np.arange(1,len(df.columns)+1)).astype(str)
df.columns

Out[245]:
Index(['1', '2', '3'], dtype='object')

关于python - 如何在 python 中用数字重命名多个列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37701373/

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