지방이의 Data Science Lab

[python] 주별, 요일별로 변경 본문

Data Analysis/Python

[python] 주별, 요일별로 변경

[지현] 2019. 8. 28. 14:47

test2_act['week'] = np.floor((test2_act['day'] -1)/ 7 +1 )

    temp['dayofweek'] = temp['day'] % 7 + 1

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

[python] 데이하루씩 미루기  (0) 2019.08.30
[python] minmaxscaler  (0) 2019.08.28
[python] eda  (0) 2019.08.27
[python] 1/0  (0) 2019.08.26
[python] nested list를 하나의 리스트로  (0) 2019.08.12
Comments