Answers for "pandas apply inplace"

3

pandas apply function to each row lambda

def EOQ(D,p,ck,ch):
    Q = math.sqrt((2*D*ck)/(ch*p))
    return Q
ch=0.2
ck=5
df['Q'] = df.apply(lambda row: EOQ(row['D'], row['p'], ck, ch), axis=1)
df
Posted by: Guest on August-23-2020
1

inplace pandas

When inplace = True is used, it performs operation on data and nothing is returned. When inplace=False is used, it performs operation on data and returns a new copy of data.
Posted by: Guest on August-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language