Python Forum
Create dataframe from the unique data of two dataframes
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Create dataframe from the unique data of two dataframes
#7
Yeah, that's all pandas is doing: checking things in lists. Each row or column is a list, Just, you can't see behind the scenes, so you don't see that, then it seems like arcane magic.

I would point out that you do not have a column "Amount", you posted "Amt", so you will get an error there, like I did first time around.

Quote:Columns:
"Date", "Acct", "Type", "Amt", "Category", "Note", "Extra"

Still like this one-liner:

res = df1[~df1.isin(df2)].dropna()
Reply


Messages In This Thread
RE: Create dataframe from the unique data of two dataframes - by Pedroski55 - Mar-02-2025, 01:51 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Create new column in dataframe Scott 10 4,078 Jun-30-2024, 10:18 PM
Last Post: Scott
  Make unique id in vectorized way based on text data column with similarity scoring ill8 0 1,527 Dec-12-2022, 03:22 AM
Last Post: ill8
  How to insert data in a dataframe? man0s 1 2,051 Apr-26-2022, 11:36 PM
Last Post: jefsummers
  Filter data based on a value from another dataframe column and create a file using lo pawanmtm 1 5,337 Jul-15-2020, 06:20 PM
Last Post: pawanmtm
  Not able to figure out how to create bar plot on aggregate data - Python darpInd 1 3,044 Mar-30-2020, 11:37 AM
Last Post: jefsummers
  Merging two DataFrames based on indexes from two other DataFrames lucinda_rigeitti 0 2,444 Jan-16-2020, 08:36 PM
Last Post: lucinda_rigeitti
  Sample based on the distribution of a feature to create more balanced data set dervast 1 2,456 Nov-15-2019, 12:25 AM
Last Post: schuler
  datetime intervals - dataframe selection (via plotted data) karlito 0 2,181 Nov-12-2019, 08:16 AM
Last Post: karlito
  How to add data to the categorical index of dataframe as data arrives? AlekseyPython 1 3,125 Oct-16-2019, 06:26 AM
Last Post: AlekseyPython
  Create dataframe through Dictionary in pandas ift38375 2 3,108 Aug-11-2019, 01:09 AM
Last Post: boring_accountant

Forum Jump:

User Panel Messages

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