지방이의 Data Science Lab

[python] 데이하루씩 미루기 본문

Data Analysis/Python

[python] 데이하루씩 미루기

[지현] 2019. 8. 30. 15:46
1
2
3
4
5
def change_day(day_list):
 
    change = np.where(day_list == 281, day_list+1)
 
    return change
 

 

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

[python] key id가 multiple 관측치일때 갯수 일정하게  (1) 2020.02.01
[python] kmeans, agglomerative clustering  (0) 2019.09.03
[python] minmaxscaler  (0) 2019.08.28
[python] 주별, 요일별로 변경  (0) 2019.08.28
[python] eda  (0) 2019.08.27
Comments