삽질기록
Could not determine jupyterlab build status without nodejs
갑자기 주피터랩의 아이콘들이 반밖에 안뜨는 현상이 발생했음.. 찾아보니까 nodejs문제인거 같아서 long term 버전으로 nodejs를 다시 설치했더니 말끔하게 해결됐다 https://nodejs.org/en/download/ Download | Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org https://stackoverflow.com/questions/51027976/could-not-determine-jupyterlab-build-status-without-nodejs Could not determine jupyterlab build status without nodejs I'..
![[Python] FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar fle..](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FzZwRW%2FbtrU0vFFnBm%2FAAAAAAAAAAAAAAAAAAAAAG46u4qe_cCNK1zIjTcV3wz1nB-jNqzVH7bZZIKssuWk%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DAcHKiYekH5mzi3yubHVXn37V7TI%253D)
[Python] FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar fle..
seaborn 패키지 에서 distplot이 사라지고 histplot으로 바뀐것이므로 distplot 대신 histplot을 적용해주면 된다 sns.histplot('Age',kde=True,linewidth=0) # 히스토그램 kdeplot 전부 보이게 하려면 # kde_kws 옵션 수정할것 sns.histplot('Age',kde=True,linewidth=0,kde_kws=dict(cut=3)) 참고자료 https://gist.github.com/mwaskom/de44147ed2974457ad6372750bbe5751 A guide to replacing the deprecated `seaborn.distplot` function. A guide to replacing the deprecated `..
![[Python] ValueError: Setting a random_state has no effect since shuffle is False. You should leave random_state to its default (None), or set shuffle=True.](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FrGR3Q%2FbtrUKmIrTjY%2FAAAAAAAAAAAAAAAAAAAAABEzG8QkBIIqG1v2BvdWcd-axKiNpcJJaQDxgipVjq6v%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3D%252BAbavkxymdjnhnv5P0B0I3VF%252BAk%253D)
[Python] ValueError: Setting a random_state has no effect since shuffle is False. You should leave random_state to its default (None), or set shuffle=True.
kfold = KFold(n_splits=10, random_state=22, shuffle=True) KFold() 에 random_state를 설정하고 shuffle 설정을 안해줘서 그런것 shuffle=True를 넣어주면 해결됨!