- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的数据框看起来“像”这样:
index name method values
0. A estimated 4874
1. A counted 847
2. A estimated 1152
3. B estimated 276
4. B counted 6542
5. B counted 1152
6. B estimated 3346
7. C counted 7622
8. C estimated 26
...
我想要做的是将每个“名称”的“估计”值和“计数”值的总数相加。我尝试使用pivot_table(如这段代码中所示)来执行此操作,但我一次只能对其中一种方法执行此操作。有没有办法可以用相同的代码来实现这两种方法?
count = df.groupby(['name']).apply(lambda sub_df: sub_df\
.pivot_table(index=['method'], values=['values'],
aggfunc= {'values': lambda x: x[df.iloc[x.index['method']=='estimated'].sum()},
margins=True, margins_name == 'total_estimated')
count
我最终想要得到的是这样的:
index name method values
0. A estimated 4874
1. A counted 847
2. A estimated 1152
3. A total_counted 847
4. A total_estimated 6026
5. B estimated 276
6. B counted 6542
7. B counted 1152
8. B estimated 3346
9. B total_counted 7694
10. B total_estimated 3622
11. C counted 7622
12. C estimated 26
13. C total_counted 7622
14. C total_estimated 26
...
最佳答案
使用DataFrame.pivot_table
为了计数,我们可以将原始 DataFrame 与 DataFrame.stack
连接起来+ DataFrame.join
或DataFrame.melt
+ DataFrame.merge
:
#if index is a columns
#df = df = df.set_index('index')
new_df = (df.join(df.pivot_table(index = 'name',
columns = 'method',
values = 'values',
aggfunc = 'sum')
.add_prefix('total_')
.stack()
.rename('new_value'),
on = ['name','method'],how = 'outer')
.assign(values = lambda x: x['values'].fillna(x['new_value']))
.drop(columns = 'new_value')
.sort_values(['name','method'])
)
print(new_df)
或
#if index is a columns
#df = df = df.set_index('index')
new_df = (df.merge(df.pivot_table(index = 'name',
columns = 'method',
values = 'values',
aggfunc = 'sum')
.add_prefix('total_')
.T
.reset_index()
.melt('method',value_name = 'values'),
on = ['name','method'],how = 'outer')
.assign(values = lambda x: x['values_x'].fillna(x['values_y']))
.loc[:,df.columns]
.sort_values(['name','method'])
)
print(new_df)
输出
name method values
2 A counted 847.0
0 A estimated 4874.0
1 A estimated 1152.0
9 A total_counted 847.0
10 A total_estimated 6026.0
5 B counted 6542.0
6 B counted 1152.0
3 B estimated 276.0
4 B estimated 3346.0
11 B total_counted 7694.0
12 B total_estimated 3622.0
7 C counted 7622.0
8 C estimated 26.0
13 C total_counted 7622.0
14 C total_estimated 26.0
但如果我是你,我会使用 DataFrame.add_suffix
相反:
new_df = (df.join(df.pivot_table(index = 'name',
columns = 'method',
values = 'values',
aggfunc = 'sum')
.add_suffix('_total')
.stack()
.rename('new_value'),
on = ['name','method'],how = 'outer')
.assign(values = lambda x: x['values'].fillna(x['new_value']))
.drop(columns = 'new_value')
.sort_values(['name','method'])
)
print(new_df)
name method values
index
1.0 A counted 847.0
8.0 A counted_total 847.0
0.0 A estimated 4874.0
2.0 A estimated 1152.0
8.0 A estimated_total 6026.0
4.0 B counted 6542.0
5.0 B counted 1152.0
8.0 B counted_total 7694.0
3.0 B estimated 276.0
6.0 B estimated 3346.0
8.0 B estimated_total 3622.0
7.0 C counted 7622.0
8.0 C counted_total 7622.0
8.0 C estimated 26.0
8.0 C estimated_total 26.0
关于python - 如何在 Pandas 的数据透视表上应用带有条件的聚合函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60149233/
我正在尝试使用透视投影描绘一个立方体,但我得到的只是一个正方形的角。正方形的面设置在原点并向正方向扩展。使用 glOrtho 我可以设置坐标系,但我在使用 glPerspective 做同样的事情时遇
SELECT j.departure, stopDepartures.* FROM journey j JOIN journey_day ON journey_day.journey = j.id J
我确实需要一些帮助来了解如何根据相似的值对表格进行透视。 day | startDate ----------------------- Monday | 09:00 Monday |
我有以下数据框 df = pd.DataFrame({ '1': ['Mon (07/08)','Sales', '2'], '2': ['Mon (07/0
dummy_df = pd.DataFrame({ 'accnt' : [101, 102, 103, 104, 101, 102, 103, 104, 101, 102, 103, 104,
public class MainActivity extends Activity { LinearLayout rotator; protected void onCreate(Bundle sa
我正在尝试通过 PHP 更改 ImageMagick 中 Plane2Cylinder 失真的视角。 为了帮助解释我在寻找什么,我制作了这张图: 您可以看到红色 block 的下部比顶部的半径更大,就
我有一个像这样的简单查询.. USE AdventureWorks; GO SELECT DaysToManufacture, AVG(StandardCost) AS AverageCost FRO
我希望我可以更改架构,但我受制于它,假设我有以下表格 JanDataTable FebDataTable MarDataTable ProductsTable 其中前三个表有 ID 和 Amount
我正在将我们的一个旧应用程序从 vb6 更新到 c#,在此过程中必须重新创建原始程序员设计的自定义控件。该控件简单地获取对象的尺寸,矩形或圆锥形,并在 3D 中放置对象的轮廓草图(我认为在技术上是 2
我一直在尝试在 MySQL 中对表进行透视(将行移动到列)。我知道 mysql 没有枢纽功能,所以我认为需要联合,但不是 100% 确定。我有三列,user_id、option_id 和 Questi
我正在尝试旋转像这样创建的 mysql 表 'CREATE TABLE `fundreturns` ( `Timestamp` datetime NOT NULL, `FundName` varcha
提前感谢任何对此提供帮助的人。我知道我以前做过这件事,没有太多痛苦,但似乎找不到解决方案 我的数据库看起来像这样: `tbl_user: ---------- id ( pkey )
我正在尝试开发 X 轴方向的卡片翻转动画。截至目前,div 现在只需使用 rotateX() 方法进行旋转。我试过对上层 div 使用透视属性,而不是工作它扭曲了我的 div 结构。因为,这只是一个工
我有一个带有 CSS3 透视图的 DIV 元素。 DIV 包含 2 个子 DIV,其中之一在 z 轴上有平移。这应该会导致一个 DIV 在另一个前面,因此后面的那个应该被挡住。 然而,这些 DIV 的
大家好,我有一张这样的 map http://sinanisler.com/demo/map/ 如您所见,有一些树,但不是真正的视角,我想要这个 http://sinanisler.com/demo/
我有以下代码将快照拍摄到帧缓冲区。我验证了帧缓冲区工作正常并且相机正确地面向对象。我曾经正确地完成图片,但它是基于错误的代码,使用了错误的截锥体。所以我决定重新开始(使用截锥体)。 物体以中间为中心,
我正在尝试将求和列添加到透视数据框,但不断收到数据解析错误。 mydata = [{'amount': 3200, 'close_date':'2013-03-31', 'customer': 'Cu
我正在尝试将一些 groupby/crosstabbing 逻辑应用于用户定义对象的 IEnumerable 列表,并且想知道是否有人可以帮助我。我坚持使用现有的(相当烦人的)对象模型来工作,但无论如
我想使用一个 CALayer 创建如下图所示的效果 - 而不是通过拆分图像、对两半进行透视变换然后将它们并排放置。 可以使用 CoreImage 以任何方式完成吗? 或者,有人可以使用 OpenGL
我是一名优秀的程序员,十分优秀!