Pandas 合并行并求和值?

发布于 2025-01-10 16:15:48 字数 1122 浏览 0 评论 0原文

我有一些地震数据。我有我关心的幅度、距离和百分比。我想将所有幅度分组在一起,并对每个幅度的距离和百分比求和。这是我的数据的一部分:

import pandas as pd

data = {'Distance': [1, 5, 9, 3, 5, 4, 2, 3.1],
        'Magnitude': [7.3, 7.3, 7.3, 6.0, 8.2, 6.0, 8.2, 5.7],
        'Percent': [0.1, 0.05, 0.07, 0.11, 0.2, 0.07, 0.08,0.11]
       }

df = pd.DataFrame(data)

print(df)


         Distance  Magnitude  Percent
 0       1.0        7.3     0.10
 1       5.0        7.3     0.05
 2       9.0        7.3     0.07
 3       3.0        6.0     0.11
 4       5.0        8.2     0.20
 5       4.0        6.0     0.07
 6       2.0        8.2     0.08
 7       3.1        5.7     0.11

我的想法是这样的。 Groupby 和 sum:

df2 = df.groupby(['Distance','Magnitude','Percent'],as_index=False).agg({'Percent': 'sum'},{'Distance': 'sum'})

我在运行代码时得到相同的数据帧,除了它按距离上升,这很好,但没有任何组合或求和。

我希望它看起来像这样:

       Distance  Magnitude  Percent
0      15.0        5.7     0.22
1       7.0        6.0     0.18
2       7.0        7.3     0.28
3       3.1        8.2     0.11

每个震级只有 1 个值,并且每个震级的距离和百分比已求和。

I have some earthquake data. I have a Magnitude, Distance, and Percent that I care about. I want to group all of the MAGNITUDES together and sum the distances and percents for each magnitudes. Here is a part of my data:

import pandas as pd

data = {'Distance': [1, 5, 9, 3, 5, 4, 2, 3.1],
        'Magnitude': [7.3, 7.3, 7.3, 6.0, 8.2, 6.0, 8.2, 5.7],
        'Percent': [0.1, 0.05, 0.07, 0.11, 0.2, 0.07, 0.08,0.11]
       }

df = pd.DataFrame(data)

print(df)


         Distance  Magnitude  Percent
 0       1.0        7.3     0.10
 1       5.0        7.3     0.05
 2       9.0        7.3     0.07
 3       3.0        6.0     0.11
 4       5.0        8.2     0.20
 5       4.0        6.0     0.07
 6       2.0        8.2     0.08
 7       3.1        5.7     0.11

My idea was this. Groupby and sum:

df2 = df.groupby(['Distance','Magnitude','Percent'],as_index=False).agg({'Percent': 'sum'},{'Distance': 'sum'})

I get the same dataframe upon running my code except it is ascending by distance which is fine, but nothing groupped together or summed.

I want it to look like this:

       Distance  Magnitude  Percent
0      15.0        5.7     0.22
1       7.0        6.0     0.18
2       7.0        7.3     0.28
3       3.1        8.2     0.11

There is only 1 value for each magnitude and the distances and percents have been summed for each magnitude.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南街女流氓 2025-01-17 16:15:48

这将完成任务,您只需要按幅度进行分组

df.groupby(by=["Magnitude"]).sum()

输出

           Distance  Percent
Magnitude                   
5.7             3.1     0.11
6.0             7.0     0.18
7.3            15.0     0.22
8.2             7.0     0.28


或者为了防止幅度成为按照@lsr729的索引,您也可以使用它

df.groupby(by=["Magnitude"], as_index=False).sum()

输出2

   Magnitude  Distance  Percent
0        5.7       3.1     0.11
1        6.0       7.0     0.18
2        7.3      15.0     0.22
3        8.2       7.0     0.28

This will do the the task, you just need to groupby magnitude only

df.groupby(by=["Magnitude"]).sum()

Output

           Distance  Percent
Magnitude                   
5.7             3.1     0.11
6.0             7.0     0.18
7.3            15.0     0.22
8.2             7.0     0.28


Or to prevent Magnitude becoming an index as per @lsr729 you can use this as well

df.groupby(by=["Magnitude"], as_index=False).sum()

Output2

   Magnitude  Distance  Percent
0        5.7       3.1     0.11
1        6.0       7.0     0.18
2        7.3      15.0     0.22
3        8.2       7.0     0.28

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文