Create pandas dataframe with multiple dataframes

后端 未结 2 2045
死守一世寂寞
死守一世寂寞 2021-01-23 17:06

I\'ve a csv file like this:

Fruit_Type;Fruit_Color;Fruit_Description
Apple;Green,Red,Yellow;Just an apple
Banana;Green,Yellow;Just a Banana
Orange;Red,Yellow;Jus         


        
2条回答
  •  独厮守ぢ
    2021-01-23 17:39

    You can create the columns using assign:

    df.assign(
       green=lambda d: d['Fruit_color'].str.contains('Green', case=True),
       red=lambda d: d['Fruit_color'].str.contains('Red', case=True),
       yellow=lambda d: d['Fruit_color'].str.contains('Yellow', case=True),
    )
    

    This results in a new dataframe with three additional columns of Booleans, namely "green", "red" and "yellow".

    To detect a row with no known colour, you can also assign other_color=lambda d: ~(d['green'] | d['red'] | d['yellow']).

    Another possibility is to use pandas.concat to concatenate multiple dataframes, but it's less elegant than the above solution.

提交回复
热议问题