[Python] dataframe apply lambda 다중 컬럼 적용 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 데이터 분석/[Python] 기초 2021.07.12
[Python] 두 리스트 안에 유니크한 값 찾기 list(set(x).symmetric_difference(set(f))) # x,f는 리스트 데이터 분석/[Python] 기초 2021.07.12