삽질기록
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..
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.
kfold = KFold(n_splits=10, random_state=22, shuffle=True) KFold() 에 random_state를 설정하고 shuffle 설정을 안해줘서 그런것 shuffle=True를 넣어주면 해결됨!