Jupyter) ClearOutput 방법 소개(command, in cell)
2021. 7. 23. 20:21ㆍ꿀팁 분석 환경 설정/Jupyter Notebook & Lab
목차
quick hack
Change the cell type to raw then back to code: Esc R Y will discard the output.
특정 셀에서 초기화(in cell)
from IPython.display import clear_output
clear_output(wait=True)
Jupyer Lab 사용자는 아래와 같이 추가
{
"shortcuts": [
{
"command": "notebook:hide-cell-outputs",
"keys": [
"H"
],
"selector": ".jp-Notebook:focus"
},
{
"command": "notebook:show-cell-outputs",
"keys": [
"Shift H"
],
"selector": ".jp-Notebook:focus"
}
]
}
Command
용량이 아주 커서 열지 못하는 경우 command로 초기화시켜야 함
abc.ipynb를 초기화하는 방법은 다음과 같음
jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace abc.ipynb
728x90
'꿀팁 분석 환경 설정 > Jupyter Notebook & Lab' 카테고리의 다른 글
[jupyter notebook] auto save interval 변경하기 (0) | 2021.01.16 |
---|---|
[TIP] HTML 을 PDF로 변경해주는 사이트 공유 (0) | 2020.11.09 |
[TIP] Jupyer notebook에서 argparse 꺼내 쓰기 (0) | 2020.11.07 |
[TIP / Installation] 사용하는 Jupyter Kernel에서 패키지 설치하는 방법 (0) | 2020.10.23 |
command로 Ipython noteobk Clear Output 하기 (0) | 2020.07.15 |