Jupyter 노트북의 변수 탐색기


81

Spyder와 같이 Jupyter (IPython)에 변수 탐색기가 있습니까? 테스트 코드를 실행할 때마다 항상 변수 목록을 인쇄해야하는 것은 매우 불편합니다.

이 기능이 아직 구현 되었습니까? 그렇다면 어떻게 활성화합니까?

답변:


93

최신 정보

훨씬 덜 복잡한 방법을 보려면 업데이트라는 섹션으로 스크롤하십시오.

오래된 답변

다음은 자신 만의 Variable Inspector 를 만드는 방법에 대한 노트북입니다 . 나는 jupyter 노트북이 ipython 노트북이라고 불렸을 때 다시 작성되었다고 생각하지만 최신 버전에서 작동합니다.

링크가 끊어지는 경우를 대비하여 아래 코드를 게시하겠습니다.

import ipywidgets as widgets # Loads the Widget framework.
from IPython.core.magics.namespace import NamespaceMagics # Used to query namespace.

# For this example, hide these names, just to avoid polluting the namespace further
get_ipython().user_ns_hidden['widgets'] = widgets
get_ipython().user_ns_hidden['NamespaceMagics'] = NamespaceMagics

class VariableInspectorWindow(object):
    instance = None

def __init__(self, ipython):
    """Public constructor."""
    if VariableInspectorWindow.instance is not None:
        raise Exception("""Only one instance of the Variable Inspector can exist at a 
            time.  Call close() on the active instance before creating a new instance.
            If you have lost the handle to the active instance, you can re-obtain it
            via `VariableInspectorWindow.instance`.""")

    VariableInspectorWindow.instance = self
    self.closed = False
    self.namespace = NamespaceMagics()
    self.namespace.shell = ipython.kernel.shell

    self._box = widgets.Box()
    self._box._dom_classes = ['inspector']
    self._box.background_color = '#fff'
    self._box.border_color = '#ccc'
    self._box.border_width = 1
    self._box.border_radius = 5

    self._modal_body = widgets.VBox()
    self._modal_body.overflow_y = 'scroll'

    self._modal_body_label = widgets.HTML(value = 'Not hooked')
    self._modal_body.children = [self._modal_body_label]

    self._box.children = [
        self._modal_body, 
    ]

    self._ipython = ipython
    self._ipython.events.register('post_run_cell', self._fill)

def close(self):
    """Close and remove hooks."""
    if not self.closed:
        self._ipython.events.unregister('post_run_cell', self._fill)
        self._box.close()
        self.closed = True
        VariableInspectorWindow.instance = None

def _fill(self):
    """Fill self with variable information."""
    values = self.namespace.who_ls()
    self._modal_body_label.value = '<table class="table table-bordered table-striped"><tr><th>Name</th><th>Type</th><th>Value</th></tr><tr><td>' + \
        '</td></tr><tr><td>'.join(['{0}</td><td>{1}</td><td>{2}'.format(v, type(eval(v)).__name__, str(eval(v))) for v in values]) + \
        '</td></tr></table>'

def _ipython_display_(self):
    """Called when display() or pyout is used to display the Variable 
    Inspector."""
    self._box._ipython_display_()

다음과 같이 인라인으로 실행하십시오.

inspector = VariableInspectorWindow(get_ipython())
inspector

자바 스크립트가 튀어 나오게하십시오.

%%javascript
$('div.inspector')
    .detach()
    .prependTo($('body'))
    .css({
        'z-index': 999, 
        position: 'fixed',
        'box-shadow': '5px 5px 12px -3px black',
        opacity: 0.9
    })
    .draggable();

최신 정보

날짜 : 2017 년 5 월 17 일

@jfbercher 가 nbextension 변수 검사기를 만들었습니다. 소스 코드는 여기 jupyter_contrib_nbextensions에서 볼 수 있습니다 . 자세한 내용은 문서를 참조하십시오 .

설치

사용자

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

가상 환경

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --sys-prefix

활성화

jupyter nbextension enable varInspector/main

다음은 스크린 샷입니다.

여기에 이미지 설명 입력


1
멋진 물건이 여기에 어떻게 보이는지 스냅 샷을 게시하면 좋을 것입니다. 나는 그것이 당신의 좋은 확장의 채택을 전파하는 데 도움이 될 것이라고 믿습니다!
Oleg

1
@Oleg 오른쪽에, 방금 추가했습니다. 또한 다른 사람이 한 확장을 작성하지 않았 음을 분명히하고 싶습니다. 나중에 누구인지 알아 내고 어트 리뷰 션을 게시하겠습니다.
James Draper

2
"2017 년 5 월 17 일 업데이트"이후 지침에 따르면 총 조준기 (-:-)처럼 보이는 추가 아이콘이 표시됩니다.이를 클릭하면 변수 탐색기가 나타납니다.
Robino 2017-06-30

2
@Robino 오른쪽에있는 툴바에 작은 버튼이 있는데, 거기에 있으면 클릭하는 원처럼 보입니다.
제임스 드레이퍼

1
@Robino이 확장은를 호출 str(eval(obj_name)) 하므로 사용자 정의 클래스를 사용하는 경우 __str__ dunder 메서드에 속성 모니터링을 추가 할 수 있습니다 . 그렇지 않은 경우 두 번째 "Monitoring"클래스로 변수를 래핑 할 수 있습니다. 세부 사항을 원하면 여기에 정확한 코드에 대한 문자가 충분하지 않기 때문에 새 질문을 만드십시오.
pkowalczyk

30

이것은 Spyder가 제공하는 것이 아니라 훨씬 간단하지만 도움이 될 수 있습니다.

현재 정의 된 모든 변수 목록을 가져 오려면 who를 실행하십시오 .

In [1]: foo = 'bar'

In [2]: who
foo

자세한 내용을 보려면 whos를 실행하십시오 .

In [3]: whos
Variable   Type    Data/Info
----------------------------
foo        str     bar

내장 함수의 전체 목록은 Magic Commands를 참조하십시오.


2
P : MATLAB / 옥타브 동일
니오 F. 마르티네스 파 체코

29

Jupyter Lab 내에서 Jupyter Notebook을 사용 하는 경우 변수 탐색기 / 검사기 구현에 대해 많은 논의가있었습니다. 여기 에서 문제를 따를 수 있습니다.

현재 Spyder와 유사한 변수 탐색기를 구현하는 Jupyter Lab 확장이 하나 있습니다. James가 그의 답변에서 언급 한 노트북 확장을 기반으로합니다. 여기에서 실습 확장 (설치 지침 포함)을 찾을 수 있습니다. https://github.com/lckr/jupyterlab-variableInspector

여기에 이미지 설명 입력


2
정확히 내가 무엇을 위해 찾고 있었다
shivam13juna

2
당신이 JupyterLab에 확장을 설치하는 방법을 모르는 경우, 다음 단계를 수행 jupyterlab.readthedocs.io/en/stable/user/extensions.html
Nibood_the_slightly_advanced

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.