list comprehension in pandas

后端 未结 4 897
难免孤独
难免孤独 2020-12-16 07:36

I\'m giving a toy example but it will help me understand what\'s going on for something else I\'m trying to do. Let\'s say I want a new column in a dataframe \'optimal_fruit

相关标签:
4条回答
  • 2020-12-16 07:49

    You can get all the values of the row as a list using the np.array() function inside your list of comprehension.

    The following code solves your problem:

    df2['optimal_fruit'] = [x[0] * x[1] - x[2] for x in np.array(df2)]
    

    It is going to avoid the need of typing each column name in your list of comprehension.

    0 讨论(0)
  • 2020-12-16 07:53

    Essentially your list comprehension statement is a set of 3 nested loops. In code:

    l = []
    for x in df2['apples']:
        for y in df2['oranges']:
            for z in df2['bananas']:
                l.extend([x * y - z])
    

    The length of your resultant list will be 3 times the length of your DataFrame. Hence the error. To fix, you need the equivalent of:

    for x, y, z in zip(df2['apples'], df2['oranges'], df2['bananas']):
        l.extend([x * y - z])
    

    In terms of list comprehension:

    [x * y - z for x, y, z in zip(df2['apples'], df2['oranges'], df2['bananas'])]
    
    0 讨论(0)
  • 2020-12-16 07:54

    The reason why your new method doesn't work is because the list comprehension produces data that is longer than the number of indices in your dataframe. A quick fix for that would be something like:

    [x * y - z for x,y,z in zip(df2['apples'], df2['oranges'], df2['bananas'])]
    
    0 讨论(0)
  • 2020-12-16 08:03

    If you do not want to repeat df2 for each column:

    [row[0][0]*row[0][1]-row[0][2] for row in zip(df2[['apples', 'oranges', 'bananas']].to_numpy())]
    

    or

    def func(row):
        print(row[0]*row[1]-row[2])
    
    [func(*row) for row in zip(df2[['apples', 'oranges', 'bananas']].to_numpy())]
    

    See also:

    • Memory efficient way for list comprehension of pandas dataframe using multiple columns
    • Dataframe list comprehension "zip(...)": loop through chosen df columns efficiently with just a list of column name strings

    EDIT:

    Please use df.iloc and df.loc instead of df[[...]], see Selecting multiple columns in a pandas dataframe

    0 讨论(0)
提交回复
热议问题