Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「A」と「B」という名前の 2 つの列を持つ pandas DataFrame があるとします。
ここで、キー 'A' と 'B' を持つ辞書もあり、辞書がスカラーを指しているとします。つまり、dict['A'] = 1.2 であり、'B' についても同様です。
DataFrame の各列をこれらのスカラーで乗算する簡単な方法はありますか?
乾杯!
あなたがすることができます:
for col in df.columns: df[col] *= myDict[col]