[Python] dataframe apply lambda 다중 컬럼 적용

데이터 분석/[Python] 기초

[Python] dataframe apply lambda 다중 컬럼 적용

INCHELIN 2021. 7. 12. 13:55
728x90
result['buff'] = result.apply(lambda x : x['bound'].buffer(x['length'], join_style=2))
# KeyError ('EMD_CD', 'occurred at index count')

result['buff'] = result.apply(lambda x : x['bound'].buffer(x['length'], join_style=2), axis=1)
# default axis=0

 

728x90