ฉันจะแทรกคอลัมน์ที่ดัชนีคอลัมน์เฉพาะในนุ่นได้อย่างไร


189

ฉันสามารถแทรกคอลัมน์ที่ดัชนีคอลัมน์เฉพาะในนุ่นได้ไหม

import pandas as pd
df = pd.DataFrame({'l':['a','b','c','d'], 'v':[1,2,1,2]})
df['n'] = 0

สิ่งนี้จะทำให้คอลัมน์nเป็นคอลัมน์สุดท้ายของdfแต่ไม่มีวิธีบอกdfให้ใส่nที่จุดเริ่มต้นหรือไม่


แทรกคอลัมน์ที่จุดเริ่มต้น (ปลายซ้ายสุด) ของ DataFrame - โซลูชันเพิ่มเติม + โซลูชันทั่วไปสำหรับการแทรกลำดับใด ๆ (ไม่ใช่แค่ค่าคงที่)
cs95

คำตอบ:


370

ดูเอกสาร: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.insert.html

ใช้ loc = 0 จะแทรกที่จุดเริ่มต้น

df.insert(loc, column, value)

df = pd.DataFrame({'B': [1, 2, 3], 'C': [4, 5, 6]})

df
Out: 
   B  C
0  1  4
1  2  5
2  3  6

idx = 0
new_col = [7, 8, 9]  # can be a list, a Series, an array or a scalar   
df.insert(loc=idx, column='A', value=new_col)

df
Out: 
   A  B  C
0  7  1  4
1  8  2  5
2  9  3  6

18
สำหรับผู้ใช้ในอนาคตพารามิเตอร์ใหม่"loc", "คอลัมน์"และ"คุ้มค่า" ที่มา
Peter Maguire

11

คุณสามารถลองแยกคอลัมน์เป็นรายการนวดสิ่งนี้ตามที่คุณต้องการและสร้างดัชนีข้อมูลอีกครั้ง:

>>> cols = df.columns.tolist()
>>> cols = [cols[-1]]+cols[:-1] # or whatever change you need
>>> df.reindex(columns=cols)

   n  l  v
0  0  a  1
1  0  b  2
2  0  c  1
3  0  d  2

แก้ไข: สิ่งนี้สามารถทำได้ในหนึ่งบรรทัด; อย่างไรก็ตามมันดูน่าเกลียดไปหน่อย บางทีข้อเสนอที่สะอาดกว่าอาจมา ...

>>> df.reindex(columns=['n']+df.columns[:-1].tolist())

   n  l  v
0  0  a  1
1  0  b  2
2  0  c  1
3  0  d  2

9

หากคุณต้องการค่าเดียวสำหรับทุกแถว:

df.insert(0,'name_of_column','')
df['name_of_column'] = value

แก้ไข:

นอกจากนี้คุณยังสามารถ:

df.insert(0,'name_of_column',value)

0

นี่คือคำตอบที่ง่ายมากสำหรับเรื่องนี้ (เพียงหนึ่งบรรทัด)

คุณสามารถทำได้หลังจากที่คุณเพิ่มคอลัมน์ 'n' ลงใน df ดังนี้

import pandas as pd
df = pd.DataFrame({'l':['a','b','c','d'], 'v':[1,2,1,2]})
df['n'] = 0

df
    l   v   n
0   a   1   0
1   b   2   0
2   c   1   0
3   d   2   0

# here you can add the below code and it should work.
df = df[list('nlv')]
df

    n   l   v
0   0   a   1
1   0   b   2
2   0   c   1
3   0   d   2



However, if you have words in your columns names instead of letters. It should include two brackets around your column names. 

import pandas as pd
df = pd.DataFrame({'Upper':['a','b','c','d'], 'Lower':[1,2,1,2]})
df['Net'] = 0
df['Mid'] = 2
df['Zsore'] = 2

df

    Upper   Lower   Net Mid Zsore
0   a       1       0   2   2
1   b       2       0   2   2
2   c       1       0   2   2
3   d       2       0   2   2

# here you can add below line and it should work 
df = df[list(('Mid','Upper', 'Lower', 'Net','Zsore'))]
df

   Mid  Upper   Lower   Net Zsore
0   2   a       1       0   2
1   2   b       2       0   2
2   2   c       1       0   2
3   2   d       2       0   2
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.