Skip to content
Advertisement

pandas df apply condition on multiple columns

I have a df that looks like this:

JavaScript

I want to create a new column named promoted from the columns master_feature, epic, and feature:

value of promoted will be :

  • master feature if adjacent master_feature column value is not null.
  • feature if adjacent feature column value is not null ,and likewise for epic

something like:

JavaScript

how can I achieve this using a df.apply? is it much more efficient if I use np.select?

Advertisement

Answer

np.select is the way to go. Try below . . . I think I got the logic correct based on your question. Also, there is some discrepancy in your logic: “feature if adjacent feature column value is not null ,and likewise for epic” is not the same as “elseif ‘epic’ pd.isnull(df.epic)” So I went with if df['epic'] is not null then 'epic' Let me know if that is correct.

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