Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- RapidCheck
- Deep Learning
- 고급C
- tracking
- 데이터
- 정리
- 머신러닝
- 지능형
- 디버그모드
- 영상분석
- Raspberry
- tensorflow
- Machine Learning
- MySQL
- sw
- 라즈베리파이
- 가상환경
- Object Detection
- Android
- 서버
- Video
- C언어
- FLASK
- Linux
- IMAGE
- Python
- detection
- keras
- 안드로이드
- php
Archives
- Today
- Total
건프의 소소한 개발이야기
[Python - Jupyter - Notebook] 이용하는데 유용한 단축키(Shortcuts) 본문
개발 이야기/Machine Learning 이야기
[Python - Jupyter - Notebook] 이용하는데 유용한 단축키(Shortcuts)
건강한프로그래머 2016. 8. 9. 10:09안녕하세요, 건프입니다.
데이터 처리를 하다보면 사용하기에 편리한 jupyter notebook 이라는 어플리케이션이 있습니다.
이를 사용하는데 여러가지 단축키(shortcut)들이 있는데요, 이를 잘 알아두면 마우스에 손을 올리지 않아도 노트북에서 작업이 가능하므로 엄청나게 효율적이랍니다.
Command Mode (press Esc
to enable)
Enter
: enter edit modeShift-Enter
: run cell, select belowCtrl-Enter
: run cellAlt-Enter
: run cell, insert belowY
: to codeM
: to markdownR
: to raw1
: to heading 12
: to heading 23
: to heading 34
: to heading 45
: to heading 56
: to heading 6Up
: select cell aboveK
: select cell aboveDown
: select cell belowJ
: select cell belowA
: insert cell aboveB
: insert cell belowX
: cut selected cellC
: copy selected cellShift-V
: paste cell aboveV
: paste cell belowZ
: undo last cell deletionD,D
: delete selected cellShift-M
: merge cell belowS
: Save and CheckpointCtrl-S
: Save and CheckpointL
: toggle line numbersO
: toggle outputShift-O
: toggle output scrollingEsc
: close pagerQ
: close pagerH
: show keyboard shortcut help dialogI,I
: interrupt kernel0,0
: restart kernelSpace
: scroll downShift-Space
: scroll upShift
: ignore
Edit Mode (press Enter
to enable)
Tab
: code completion or indentShift-Tab
: tooltipCtrl-]
: indentCtrl-[
: dedentCtrl-A
: select allCtrl-Z
: undoCtrl-Shift-Z
: redoCtrl-Y
: redoCtrl-Home
: go to cell startCtrl-Up
: go to cell startCtrl-End
: go to cell endCtrl-Down
: go to cell endCtrl-Left
: go one word leftCtrl-Right
: go one word rightCtrl-Backspace
: delete word beforeCtrl-Delete
: delete word afterEsc
: command modeCtrl-M
: command modeShift-Enter
: run cell, select belowCtrl-Enter
: run cellAlt-Enter
: run cell, insert belowCtrl-Shift-Subtract
: split cellCtrl-Shift--
: split cellCtrl-S
: Save and CheckpointUp
: move cursor up or previous cellDown
: move cursor down or next cellShift
: ignore
이 내용은 아래 링크안의 내용입니다.
참조 :
https://sowingseasons.com/blog/reference/2016/01/jupyter-keyboard-shortcuts/23298516
' 개발 이야기 > Machine Learning 이야기' 카테고리의 다른 글
[Deep Learning] First Step with MNIST Dataset by Python Keras (0) | 2017.02.15 |
---|---|
[Python-Jupyter] Matplotlib 그래프 여러개 그리기 (1) | 2017.02.12 |
[Jupyter - Notebook] ipynb 파일을 python 파일로 변환하기 (4) | 2016.07.27 |
[Python - Tensorflow] Tensorflow 시작하기 (2) (2) | 2016.06.06 |
[Python - Tensorflow] Tensorflow 시작하기(1) (1) | 2016.06.04 |
Comments