Python Forum
Match a table with sub-total values to its detail value table
Thread Rating:
  • 2 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Match a table with sub-total values to its detail value table
#2
If your subtotals were made as "running sums" (sums of consecutive amounts in same order) of your detail transaction's amounts , then it would be quite easy - you could do running sums on both detail and subtotal and use pd.cut() with label parameter equal to Ref to "split" your detail to appropriate parts.

For your data you can split your subtotal/detail dataframe by date (you can use groupby and zip) and then for each date try to find grouping of detail amounts that gives your subtotals. Finding that grouping is not a pandas problem; as it seems like more complicated variation of subset sum, it could be quite demanding for bigger amount of transactions.
Reply


Messages In This Thread
RE: Match a table with sub-total values to its detail value table - by zivoni - May-15-2017, 09:10 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Simple linear regression with interaction summary table Andrzej_Andrzej 0 333 Feb-21-2024, 07:44 AM
Last Post: Andrzej_Andrzej
  Extracting tables and text above the table from a PDF to CSV DivAsh 3 2,557 Jan-18-2023, 07:39 AM
Last Post: perfringo
  How to write table to different sheet in openpyxl rsearing 2 2,165 Aug-22-2022, 11:59 PM
Last Post: Pedroski55
  Create a Table to a PNG file amanajosh 0 1,126 Aug-11-2022, 02:54 AM
Last Post: amanajosh
  Chi-square with the contingency table applied to the die Leloup 4 2,028 Mar-16-2022, 12:22 AM
Last Post: jefsummers
  pivot table (excel vs python) Bric 1 1,700 Feb-02-2022, 11:04 PM
Last Post: Bric
Question How does one clean a populated table in MySQL/MariaDB? Copying values across tables? BrandonKastning 2 1,603 Jan-17-2022, 05:46 AM
Last Post: BrandonKastning
  How do I use bounding box to locate a table in a pdf file? JaneTan 1 2,554 Sep-01-2021, 05:44 PM
Last Post: Larz60+
  Identify anomalies in a payment detail dataset for a period klllmmm 1 1,935 Aug-05-2021, 09:41 AM
Last Post: Larz60+
  How to set the font size for a pandas table? AlekseyPython 0 2,354 Feb-06-2021, 03:37 AM
Last Post: AlekseyPython

Forum Jump:

User Panel Messages

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