DataFrame
ผมกำลังมองหาวิธีที่สง่างามที่จะเปลี่ยนชื่อคอลัมน์ที่ระบุใน
เล่นข้อมูล ...
import pandas as pd
d = {
'one': [1, 2, 3, 4, 5],
'two': [9, 8, 7, 6, 5],
'three': ['a', 'b', 'c', 'd', 'e']
}
df = pd.DataFrame(d)
ทางออกที่ดีที่สุดที่ฉันได้พบ ...
names = df.columns.tolist()
names[names.index('two')] = 'new_name'
df.columns = names
ฉันหวังว่าจะเป็นหนึ่งซับง่าย ... ความพยายามนี้ล้มเหลว ...
df.columns[df.columns.tolist().index('one')] = 'another_name'
คำแนะนำใด ๆ ที่ได้รับสุดซึ้ง