คำถามของคุณมีความคลุมเครือเล็กน้อย มีการตีความอย่างน้อยสองสามประการ:
- กุญแจในการ
di
อ้างถึงค่าดัชนี
- กุญแจในการ
di
อ้างถึงdf['col1']
ค่า
- กุญแจในการ
di
อ้างถึงตำแหน่งดัชนี (ไม่ใช่คำถามของ OP แต่โยนเพื่อความสนุก)
ด้านล่างเป็นวิธีแก้ปัญหาสำหรับแต่ละกรณี
กรณีที่ 1:
หากคีย์ของdi
มีไว้เพื่ออ้างถึงค่าดัชนีคุณสามารถใช้update
วิธีการได้:
df['col1'].update(pd.Series(di))
ตัวอย่างเช่น,
import pandas as pd
import numpy as np
df = pd.DataFrame({'col1':['w', 10, 20],
'col2': ['a', 30, np.nan]},
index=[1,2,0])
# col1 col2
# 1 w a
# 2 10 30
# 0 20 NaN
di = {0: "A", 2: "B"}
# The value at the 0-index is mapped to 'A', the value at the 2-index is mapped to 'B'
df['col1'].update(pd.Series(di))
print(df)
อัตราผลตอบแทน
col1 col2
1 w a
2 B 30
0 A NaN
ฉันได้แก้ไขค่าจากโพสต์ดั้งเดิมของคุณแล้วดังนั้นจึงชัดเจนว่าupdate
กำลังทำอะไรอยู่ โปรดสังเกตว่ากุญแจในdi
นั้นเกี่ยวข้องกับค่าดัชนีอย่างไร ลำดับของค่าดัชนี - นั่นคือที่ตั้งดัชนี- ไม่สำคัญ
กรณีที่ 2:
หากคีย์ต่าง ๆdi
อ้างถึงdf['col1']
ค่าดังนั้น @DanAllan และ @DSM จะแสดงวิธีดำเนินการreplace
ดังนี้:
import pandas as pd
import numpy as np
df = pd.DataFrame({'col1':['w', 10, 20],
'col2': ['a', 30, np.nan]},
index=[1,2,0])
print(df)
# col1 col2
# 1 w a
# 2 10 30
# 0 20 NaN
di = {10: "A", 20: "B"}
# The values 10 and 20 are replaced by 'A' and 'B'
df['col1'].replace(di, inplace=True)
print(df)
อัตราผลตอบแทน
col1 col2
1 w a
2 A 30
0 B NaN
หมายเหตุวิธีการในกรณีนี้ปุ่มในdi
การเปลี่ยนแปลงเพื่อให้ตรงกับค่าdf['col1']
ใน
กรณีที่ 3:
หากคีย์ที่di
อ้างถึงตำแหน่งดัชนีคุณสามารถใช้
df['col1'].put(di.keys(), di.values())
ตั้งแต่
df = pd.DataFrame({'col1':['w', 10, 20],
'col2': ['a', 30, np.nan]},
index=[1,2,0])
di = {0: "A", 2: "B"}
# The values at the 0 and 2 index locations are replaced by 'A' and 'B'
df['col1'].put(di.keys(), di.values())
print(df)
อัตราผลตอบแทน
col1 col2
1 A a
2 10 30
0 B NaN
นี่แถวแรกและที่สามมีการเปลี่ยนแปลงเพราะกุญแจในการdi
มี0
และ2
ที่ที่มีการจัดทำดัชนี 0-based ธ หมายถึงสถานที่แรกและที่สาม
col```` is tuple. The error info is
ไม่สามารถเปรียบเทียบประเภท 'ndarray (dtype = object)' และ 'tuple'```