Python Forum
Groupby in pandas with conditional - add and subtract
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Groupby in pandas with conditional - add and subtract
#2
i guess you missed a column while doing groupby.. Apart from that you can make the below minor adjustments

f0219_grouped = f0219[~f0219['Rubrica'].isin(['240','245'])].groupby(['Identificação Única', 'Nome','Rubrica'])['Valor'].sum().reset_index()
f0219_grouped['Valor']=(f0219_grouped['Valor'] - (f0219_grouped['Valor'].where(f0219_grouped['Rubrica']==352)).fillna(0))
f0219_grouped[f0219_grouped["Valor"]>=10000]
Reply


Messages In This Thread
RE: Groupby in pandas with conditional - add and subtract - by Cynthiachris - Jul-11-2019, 11:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Assigning conditional values in Pandas Scott 3 860 Dec-19-2023, 03:10 AM
Last Post: Larz60+
  xlswriter(pandas) and conditional format paul18fr 1 1,182 Aug-28-2022, 07:56 AM
Last Post: paul18fr
  Remove extra count columns created by pandas groupby spyf8 1 2,750 Feb-10-2021, 09:19 AM
Last Post: Naheed
  How to subtract columns with dates? jpy 3 2,278 Dec-29-2020, 12:11 AM
Last Post: jpy
  Combine groupby() and shift() in pandas rama27 0 4,247 Nov-17-2020, 09:49 PM
Last Post: rama27
  Pandas: summing columns conditional on the column labels ddd2332 0 2,155 Sep-10-2020, 05:58 PM
Last Post: ddd2332
  Fastest way to subtract elements of datasets of HDF5 file? Robotguy 3 2,689 Aug-01-2020, 11:48 PM
Last Post: scidam
  Pandas + Groupby + Filter unique values JosepMaria 1 2,905 Jun-15-2020, 08:15 AM
Last Post: JosepMaria
  Python pandas merge with or conditional Lafayette 0 2,215 May-07-2020, 07:34 PM
Last Post: Lafayette
  python pandas: diff between 2 dates in a groupby bluedragon 0 3,297 Mar-25-2020, 04:18 PM
Last Post: bluedragon

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020