지방이의 Data Science Lab

[python] 1/0 본문

Data Analysis/Python

[python] 1/0

[지현] 2019. 8. 26. 18:06

temp = pd.merge(final, train_activity.groupby('acc_id')['npc_kill'].sum().to_frame('is_npc_kill').reset_index(), on ='acc_id', how='left')
temp['is_npc_kill'] = np.where(temp['is_npc_kill']==0, 1, 0)

'Data Analysis > Python' 카테고리의 다른 글

[python] 주별, 요일별로 변경  (0) 2019.08.28
[python] eda  (0) 2019.08.27
[python] nested list를 하나의 리스트로  (0) 2019.08.12
[python] 이미지삽입  (0) 2019.08.10
[python] 데이터 셋 쪼개기 유저기준으로  (0) 2019.08.04
Comments