比方說,我們有以下數據集:熊貓:標準化組內
import pandas as pd
data = [('apple', 'red', 155), ('apple', 'green', 102), ('apple', 'iphone', 48),
('tomato', 'red', 175), ('tomato', 'ketchup', 96), ('tomato', 'gun', 12)]
df = pd.DataFrame(data)
df.columns = ['word', 'rel_word', 'weight']
我想重新計算權重,使他們每個組中總結到1.0(蘋果,番茄在例子中)並保持相關權重(例如蘋果/紅色蘋果/綠色仍然應該是155/102)。
您可以添加所需的O-本安輸出? – jezrael
請在單獨的專欄中提及預期輸出以便更好地理解 – JKC