Answers for "using apply function in pandas"

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
2

pandas apply function to dataframe

# iterate using this syntax where df is the pandas.DataFrame
# N. B.: a single tuple is composed by the row index 
# and the values of the dataframe columns  

for row in df.itertuples():
  # do your stuff here
Posted by: Guest on May-12-2021
0

give function to pandas apply

import pandas as pd


def sum(x, y, z, m):
    return (x + y + z) * m


df = pd.DataFrame({'A': [1, 2], 'B': [10, 20]})

df1 = df.apply(sum, args=(1, 2), m=10)
print(df1)
Posted by: Guest on November-22-2020

Code answers related to "using apply function in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language