第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在python中計(jì)算每組的相同條目

在python中計(jì)算每組的相同條目

茅侃侃 2023-06-06 15:59:49
我有以下形式的數(shù)據(jù)框:group base height weight size0      A     10     5     M0      A     20     5     M1      A     10     10    S2      A      5      5    L我怎樣才能得到一個(gè)矩陣,它按組計(jì)算相似的條目?輸出如下所示:compare  base height weight size0,1        3/3  2/3   2/3   2/30,2        3/3  0/3   3/3   2/31,2        2/2  0/2   0/2   0/2
查看完整描述

1 回答

?
侃侃無(wú)極

TA貢獻(xiàn)2051條經(jīng)驗(yàn) 獲得超10個(gè)贊

  • 在解決方案的核心最常見(jiàn)的值

  • 用于itertools.combinations獲取有效的組對(duì)

  • 在組的組合中比較最頻繁的每一行。sum()查找匹配數(shù)的真值矩陣

  • 休息正在形成

df = pd.read_csv(io.StringIO("""group base height weight size

0? ? ? A? ? ?10? ? ?5? ? ?M

0? ? ? A? ? ?20? ? ?5? ? ?M

1? ? ? A? ? ?10? ? ?10? ? S

2? ? ? A? ? ? 5? ? ? 5? ? L"""), sep="\s+")


# columns we're working with

cols = [c for c in df.columns if c!= "group"]


# iterate over combinations of groups

dfx = pd.DataFrame()

for gp in itertools.combinations(df.group.unique(), 2):

? ? dfg = df.loc[df.group.isin(gp),cols]

? ? dfx = pd.concat([dfx,?

? ? ? ? ? ? ? ? ? ? ?(dfg == dfg.value_counts().index[0])

? ? ? ? ? ? ? ? ? ? ?.sum().to_frame().T.assign(gs=len(dfg), compare=",".join(str(e) for e in gp))

? ? ? ? ? ? ? ? ? ? ])

# rebase 1 as 0 for comparisons

dfx = dfx.reset_index(drop=True).replace(1,0).astype(str)

# format as required

dfx.loc[:,cols] = dfx[cols].apply(lambda x: x+" / " +dfx["gs"])


dfx.drop(columns="gs")

根據(jù)高度重量尺寸比較
03 / 32 / 32 / 32 / 30,1
13 / 30 / 33 / 30 / 30,2
22 / 20 / 20 / 20 / 21,2


查看完整回答
反對(duì) 回復(fù) 2023-06-06
  • 1 回答
  • 0 關(guān)注
  • 117 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)