I have a dataframe like this:
import pandas as pd
dic = {'A':[100,200,250,300],
'B':['ci','ci','po','pa'],
'C':['s','t','p','w']}
df = pd.DataFrame(dic)
My goal is to separate the row in 2 dataframes:
- df1 = contains all the rows that do not repeat values along column
B
(unque rows). - df2 = containts only the rows who repeat themeselves.
The result should look like this:
df1 = A B C df2 = A B C
0 250 po p 0 100 ci s
1 300 pa w 1 250 ci t
Note:
- the dataframes could be in general very big and have many values that repeat in column B so the answer should be as generic as possible
- if there are no duplicates, df2 should be empty! all the results should be in df1