1
パンダのDFで条件groupby
を使用します。どうか 'B' ==によって条件付きでPandas DataFrameをグループ化するにはどうすればよいですか?
test = pd.DataFrame({'A':range(9), 'B':['this','this','this','that','and','the','other','thing','.']})
グループ 'A' 'この'(私はクエリ構造/ wの本を想像する方法):[3,33]
:test['A'].groupby("B == 'this'").sum()
はこれを返す必要があります
pd.Series([3,33])
おかげで、
Gah。もちろん可能です。ありがとう。 – PeterFoster