web-dev-qa-db-ja.com

Jupyterノートブックの変数エクスプローラー

SpyderのようなJupyter(IPython)に変数Explorerはありますか?テストコードを実行するたびに変数のリストを常に印刷する必要があるのは非常に不快です。

この機能はまだ実装されていますか?その場合、それを有効にする方法は?

57
Ébe Isaac

更新

はるかに複雑でない方法については、更新というラベルの付いたセクションまでスクロールします。

古い回答

独自の 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をポップアウトにします。

%%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 。詳細については、 docs を参照してください。

インストール

ユーザー

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

これがスクリーンショットです。

enter image description here

71
James Draper

これはあなたを助けるかもしれませんが、それはSpyderが提供するものではなく、はるかに簡単です:

現在定義されているすべての変数のリストを取得するには、whoを実行します。

In [1]: foo = 'bar'

In [2]: who
foo

詳細については、whosを実行します。

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

組み込み関数の完全なリストについては、 Magic Commands を参照してください

24
Amin Alaee

Jupyter Lab 内でJupyter Notebooksを使用する場合、変数Explorer/inspectorの実装について多くの議論がありました。問題を追跡できます こちら

現時点では、Spyderに似た変数Explorerを実装するJupyter Lab拡張が1つあります。これは、ジェームズが答えで言及したノートブック拡張に基づいています。ラボの拡張機能(インストール手順を含む)は次の場所にあります。 https://github.com/lckr/jupyterlab-variableInspector

enter image description here

17
Simon