Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

keep only duplicates pandas multiple columns

df[df.duplicated(['col1', 'col2', 'col3'], keep=False)]
Comment

keep only one duplicate in pandas

import pandas as pd
df = pd.DataFrame({"A":["foo", "foo", "foo", "bar"], "B":[0,1,1,1], "C":["A","A","B","A"]})
df.drop_duplicates(subset=['A', 'C'], keep=False)
Comment

PREVIOUS NEXT
Code Example
Python :: binary search algorithm python 
Python :: mode of a column in df 
Python :: django phone number field 
Python :: how to find the text inside button in tkinter 
Python :: limpiar consola en python 
Python :: pyqt5 qpushbutton disable 
Python :: python slice an array 
Python :: sample randomforest hyperparameter tuning 
Python :: connect flask with postgresql 
Python :: %matplotlib inline 
Python :: python program to display the current date and time 
Python :: python cartesian product 
Python :: remove nans from array 
Python :: python way to unindent blocks of code 
Python :: letter frequency counter python 
Python :: how to sort dictionary in python by value 
Python :: python selenium full screen 
Python :: install qt designer python ubuntu 
Python :: django dumpdata 
Python :: from django.utils.translation import ugettext_lazy as _ 
Python :: how to rename columns in python 
Python :: django get or 404 
Python :: jupyter notebook not showing all columns 
Python :: python os filename without extension 
Python :: unnamed 0 pandas 
Python :: data dictionary python into numpy 
Python :: python execute time 
Python :: python center window 
Python :: python get current time 
Python :: django create token for user 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =