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.
我有一个只有“名称”和“值”列的 dask 数据框,类似于下表。
如何计算“平均”列?我在破折号中尝试了 groupby ,但这只是给了我一个包含 A 和 B 平均值的 2 条记录的数据框。
您可以直接离开加入您原来的表和新表Name。来自https://docs.dask.org/en/latest/dataframe-joins.html:
Name
small = small.repartition(npartitions=1) result = big.merge(small)