Skip to content
Advertisement

Tag: multiple-columns

What is the best way to filter rows of one dataframe based on column entries of another dataframe

I have two dataframes in python, one called DayList, with these columns: OrderNr Powder Variant Quantity DueDate, and another one called Planning, with these columns: Order Start End Day Powder Variant Task. Both dataframes will have multiple lines with specific combinations, the column entries for Powder and Variant will be an integer, I want to filter the dataframe DayList into

Advertisement