JupyterHuck

Visualizing data in a tree structure


Keywords
data, browser
License
MIT
Install
pip install JupyterHuck==0.7

Documentation

JupyterHuck

A data browser which has a tree structure.This browser also controls matplotlib graphs embedded in PyQt5 windows.

Installation

pip install JupyterHuck

Usage

%gui qt ### necessary when using in Jupyter
from JupyterHuck.MyView import getRoot
from JupyterHuck.MyGraph import MyGraphWindow

r=getRoot()

a='This is a string'
r.cur.add(a)

graph=MyGraphWindow()
graph.plot([1,2,3],[1,2,1])
r.cur.add(graph)

r.save()