Jupyter notebook (주피터 노트북) Start
BioinformaticsAndMe
1. Jupyter notebook?
: Jupyter notebook은 코드/수식/미디어/텍스트 등의 문서를 만들고 공유할 수 있는 오픈소스 웹 프로그램
*코드/수식/미디어/텍스트 등을 하나의 문서로 표현 가능
: Ipython 커널 기반의 대화형 파이썬 셸
: 터미널 shell + 웹 기반의 데이터 분석 Notebook 제공
: 데이터 분석 Interactive Shell의 표준으로 널리 사용됨
: https://jupyter.org/index.html
2. Jupyter notebook 실행
: Jupyter notebook 실행은 Anaconda prompt 환경에서 수행됨 (주피터 노트북은 설치/실행의 다양한 방법들이 존재)
*아나콘다 설치 → https://bioinformaticsandme.tistory.com/153
: Jupyter notebook 실행 과정
1) Anaconda Prompt 실행
2) cd(change directory) 커맨드로 작업 폴더로 이동
*작성된 코드가 작업 폴더에 저장됨
3) 이동 후, 'jupyter notebook'을 입력
3. Jupyter notebook 살펴보기
ㄱ) python3 notebook 파일 생성하기
ㄴ) Notebook에서 작성된 내용은 다양한 형식으로 다운 가능 (기본: .ipynb)
ㄷ) 'Find and Replace'로 특정 단어를 찾거나 대체할 수 있음 (단축키 f)
4. Jupyter notebook 단축키
▶ Enter : 편집 모드
▶ Ctrl + Enter : 셀 실행
▶ Shfit + Enter : 셀 실행 후, 아래 셀 선택
▶ Alt + Enter : 셀 실행 후, 아래 셀 삽입
▶ Shfit + m : 아래 셀과 합치기
▶ a : 셀 위에 새로운 셀 삽입
▶ b : 셀 아래에 새로운 셀 삽입
▶ x : 셀 잘라내기
Command mode (명령모드) |
Edit mode (편집모드) |
- 셀 외부 상태 - ESC 또는 cell 밖을 클릭하면 command mode로 바뀜 - 왼쪽 바 색깔 파란색 - 코드 실행 시 사용 |
- 셀 내부 상태 - Enter 또는 cell을 클릭하면 edit mode로 바뀜 - 왼쪽 바 색깔 초록색 - 코드 작성 시 사용 |
#Reference
1) https://jupyter.org/index.html
2) https://github.com/jupyter/notebook/blob/master/docs-translations/ko-KR/Installation.md
3) https://en.wikipedia.org/wiki/Project_Jupyter
4) https://www.cheatography.com/weidadeyue/cheat-sheets/jupyter-notebook/
Jupyter notebook (주피터 노트북) End
BioinformaticsAndMe
'Program' 카테고리의 다른 글
[Kubernetes] 쿠버네티스 소개 (0) | 2019.10.18 |
---|---|
API 기초 학습 (0) | 2019.09.26 |
Docker 설치 (0) | 2018.09.03 |
Docker 시작하기 (1) | 2018.07.17 |
[Pachyderm] Splitting Data for Distributed Processing (분산처리) (0) | 2018.07.08 |