본문 바로가기
Tips/IDE Setting

jupyter notebook 꿀팁!

by _S0_H2_ 2021. 8. 1.
728x90
반응형

1. 테마 변경

pip install jupyterthemes # 설치
jt -l # 가능한 테마 리스트
jt -t <theme name> # 설치
chesterish, grade3, gruvboxd, gruvboxl, gruvboxd, monokai, oceans16, onedork, solarizedd, solarized1

2. jupyter 확장 tabs 

pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install --user

nbextensions config를 클릭하면 아래와 같은 확장 가능 tab들을 볼 수 있다. 여기에서 몇 가지 유용하게 사용하는 것만 체크해준다.

 

  • hinterland : intelligence와 같은 것
  • Table of contents : index를 좌측에 보여줌 ( markdown 에 따라 )
  • collapsible headings : header 아래의 글들을 숨겨줌
  • exececute time : 실제 실행 시간 
  • autpep8 : 정렬
  • codefolding : 함수/클래스 등을 folding할 수 있음

3. Qgrid

pip install qgrid
jupyter nbextension enable --py --sys-prefix qgrid

터미널에서 설치 후

import qgrid
show = qgrid.show_grid(df, show_toolbar=True)
show

입력하면 interactive 한 표를 볼 수 있다.

728x90
반응형

'Tips > IDE Setting' 카테고리의 다른 글

cuda  (0) 2021.08.02