SEO: search engine optimization
글
5월, 2021의 게시물 표시
windows
matplotlib와 함께 사용할 수 있는 seaborn
- 공유 링크 만들기
- X
- 이메일
- 기타 앱
matplotlib와 같이 사용가능한 서드파티 패키지 목록은 여기서 확인 가능 https://matplotlib.org/stable/thirdpartypackages/index.html 컬러 팔레트 기능이 마음에 들어서 여기서 seaborn을 사용해 본다 cmd에 pip install seaborn numpy scipy pandas matplotlib 중에 없는 것이 있으면 자동으로 다운받는다. 컬러팔레트 설명 https://medium.com/analytics-vidhya/deep-dive-into-seaborn-palettes-7b5fae5a258e
html
error
python
error
python
error
windows
jupyter notebook의 kernel이란 무엇인가
- 공유 링크 만들기
- X
- 이메일
- 기타 앱
what is kernel in jupyter notebook A ' kernel ' is a program that runs and introspects the user's code. IPython includes a kernel for Python code, and people have written kernels for several other languages. At kernel startup, Jupyter passes the kernel a connection file. ... You can implement the kernel machinery in your target language.