Skip to content
Advertisement

Compare two side by side column in pandas dataframe and colour selected cells simultaneously

I have a DataFrame say – df

JavaScript
JavaScript

Now I want to check whether all the id’s of the column emp_ids are present in the the column master_emp_ids or not. So each and every id of emp_ids should get compared with each and every id of master_emp_ids. And there should be a column created named status, where it gives yes if present and no if not. Basically, 87 in the first col is present in the second col so it’s a yes and also to color green that particular cell where it says ‘yes’. So my final DataFrame should be – df

JavaScript
JavaScript

please help me to get my desired OP.

Thanks!!!

Advertisement

Answer

Use numpy.where with Series.isin for add new last column:

JavaScript

If need first column use DataFrame.insert:

JavaScript

EDIT: For coloring is possible use style:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement