のdf
列を持つがあるとします'ID', 'col_1', 'col_2'
。そして私は関数を定義します:
f = lambda x, y : my_function_expression
。
次に、の2つの列を要素ごとに適用しf
て、新しい列を計算します。df
'col_1', 'col_2'
'col_3'
df['col_3'] = df[['col_1','col_2']].apply(f)
# Pandas gives : TypeError: ('<lambda>() takes exactly 2 arguments (1 given)'
実行する方法 ?
** 以下のように詳細サンプルを追加します ***
import pandas as pd
df = pd.DataFrame({'ID':['1','2','3'], 'col_1': [0,2,3], 'col_2':[1,4,5]})
mylist = ['a','b','c','d','e','f']
def get_sublist(sta,end):
return mylist[sta:end+1]
#df['col_3'] = df[['col_1','col_2']].apply(get_sublist,axis=1)
# expect above to output df as below
ID col_1 col_2 col_3
0 1 0 1 ['a', 'b']
1 2 2 4 ['c', 'd', 'e']
2 3 3 5 ['d', 'e', 'f']
f
が行われているのかを知るのに役立ちます