不可以對df.columns和df.indexin a single element operation,需要整體替換
df = pd.DataFrame(np.arange(12).reshape(3,4))
df
>>> 0 1 2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
# 使用df.columnsreplace all column names
df.columns=[2,3,4,5]
df
>>> 2 3 4 5
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
# 使用df.index替換所有行index
df.index = [2,3,4]
df
>>> 2 3 4 5
2 0 1 2 3
3 4 5 6 7
4 8 9 10 11
df.rename(
mapper=None,
index=None,
columns=None,
axis=None,
copy=True,
inplace=False,
level=None,
errors='ignore',
)
使用mapper+axis時,axis=1
或者axis='columns'
df = pd.DataFrame(np.arange(12).reshape(3,4))
df
>>> 0 1 2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
# mapper+axis
df.rename({
0:'col0'}, axis=1)
>>>col0 1 2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
df.rename({
0:'col0'}, axis='columns')
>>>col0 1 2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
# columns
df.rename(columns={
0:'col0', 2:'col2'})
>>>col0 1 col2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
使用mapper+axis時,axis=0
或者axis='rows'
或者axis='index'
df = pd.DataFrame(np.arange(12).reshape(3,4))
df
>>> 0 1 2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
# mapper+axis
df.rename({
0:'row0'}, axis=0)
>>> 0 1 2 3
row0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
df.rename({
0:'row1'}, axis='rows')
>>> 0 1 2 3
row1 0 1 2 3
1 4 5 6 7
2 8 9 10 11
# index
df.rename(index={
0:'row0', 2:'row2'})
>>> 0 1 2 3
row0 0 1 2 3
1 4 5 6 7
row2 8 9 10 11