Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.1 KB

README.md

File metadata and controls

47 lines (31 loc) · 1.1 KB

Deprecated in favor of liveplot for on the fly plotting and H5Explore for hdf5 dataset visualization.

H5Plot

Dependencies

Usage

Run dataserver

python dataserver/dataserver.py

or

from dataserver import run_dataserver
run_dataserver()

Run gui

python H5Plot/window.py

or

 from H5Plot import run_plotwindow
 run_plotwindow()

Send Data to DataServer

from dataserver import get_file
f = get_file('test.h5')
f['dataset'] = [1,3,2,4]

If you don't want to create new files every time you run, consider the timestamp feature, which will create a new group inside the file, and return that instead

f = get_file('test.h5', timestamp_group=True) f['dataset'] = [1,3,2,4]