├── .github ├── actions │ └── install-dependencies-and-plottr │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── python-app.yml │ └── python-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── apps ├── autoplot_ddh5.py ├── inspectr.py └── templates │ └── autoplot_ddh5.bat ├── doc ├── Makefile ├── api │ ├── data.rst │ ├── index.rst │ ├── node.rst │ └── plot.rst ├── concepts │ ├── data.rst │ ├── index.rst │ ├── nodes.bak.rst │ └── nodes.rst ├── conf.py ├── examples.rst ├── examples │ ├── Inferring grids.ipynb │ ├── Live plotting qcodes data.ipynb │ ├── Simple Live plotting example with DDH5.ipynb │ ├── autonode_app.py │ └── node_with_dimension_selector_widget.py ├── img │ └── plot-node-system.png ├── index.rst ├── intro.rst ├── make.bat ├── nodes │ └── index.rst ├── plotnode.rst └── requirements.txt ├── plottr ├── __init__.py ├── _version.py ├── analyzer │ ├── __init__.py │ ├── base.py │ ├── fitters │ │ ├── __init__.py │ │ ├── experiment_functions.py │ │ ├── fitter_base.py │ │ └── generic_functions.py │ └── others │ │ ├── __init__.py │ │ └── find_max.py ├── apps │ ├── __init__.py │ ├── appmanager.py │ ├── apprunner.py │ ├── autoplot.py │ ├── inspectr.py │ ├── json_viewer.py │ ├── monitr.py │ ├── ui │ │ ├── Monitr_UI.py │ │ ├── __init__.py │ │ ├── monitr.py │ │ └── monitr.ui │ └── watchdog_classes.py ├── config │ ├── __init__.py │ └── plottrcfg_main.py ├── data │ ├── __init__.py │ ├── datadict.py │ ├── datadict_storage.py │ └── qcodes_dataset.py ├── gui │ ├── __init__.py │ ├── data_display.py │ ├── tools.py │ └── widgets.py ├── icons.py ├── log.py ├── node │ ├── __init__.py │ ├── autonode.py │ ├── data_selector.py │ ├── dim_reducer.py │ ├── filter │ │ ├── __init__.py │ │ └── correct_offset.py │ ├── fitter.py │ ├── grid.py │ ├── histogram.py │ ├── node.py │ ├── scaleunits.py │ └── tools.py ├── plot │ ├── __init__.py │ ├── base.py │ ├── mpl │ │ ├── __init__.py │ │ ├── autoplot.py │ │ ├── plotting.py │ │ └── widgets.py │ └── pyqtgraph │ │ ├── __init__.py │ │ ├── autoplot.py │ │ └── plots.py ├── py.typed ├── resource │ └── gfx │ │ ├── 2dscatter_plot.svg │ │ ├── axes_assign.svg │ │ ├── colormesh_plot.svg │ │ ├── complete.svg │ │ ├── data_columns.svg │ │ ├── default_file_icon.svg │ │ ├── grid.svg │ │ ├── image_plot.svg │ │ ├── interrupted.svg │ │ ├── json_file_icon.svg │ │ ├── loading_gif.gif │ │ ├── multi_trace_plot.svg │ │ ├── png_file_icon.svg │ │ ├── single_trace_plot.svg │ │ ├── star.svg │ │ ├── trash.svg │ │ ├── txt_file_icon.svg │ │ └── xy_select.svg └── utils │ ├── __init__.py │ ├── find_scale_and_prefix.py │ ├── misc.py │ ├── num.py │ └── testdata │ ├── __init__.py │ ├── dispersive_qubit_readout.py │ └── testdata.py ├── pyproject.toml ├── readthedocs.yml ├── requirements.txt ├── setup.py ├── test ├── __init__.py ├── apps │ ├── autoplot_app.py │ ├── custom_app.py │ ├── fitter_test.py │ └── test_histograms.py ├── gui │ ├── __init__.py │ ├── correct_offset.py │ ├── data_display_widgets.py │ ├── data_selector.py │ ├── ddh5_loader.py │ ├── dimension_assignment.py │ ├── dimension_selection_widgets.py │ ├── grid_options.py │ ├── mpl_figuremaker.py │ ├── pyqtgraph_figuremaker.py │ ├── pyqtgraph_testing.py │ └── simple_2d_plot.py ├── prototyping │ ├── autoplot testing.ipynb │ ├── new_data_methods.ipynb │ ├── plottrcfg_main.py │ └── test_data.py ├── pytest │ ├── __init__.py │ ├── conftest.py │ ├── pytest.ini │ ├── test_app_manager.py │ ├── test_correct_offset.py │ ├── test_data_dict.py │ ├── test_data_dict_base.py │ ├── test_data_selector.py │ ├── test_ddh5.py │ ├── test_dim_reducer.py │ ├── test_gridder.py │ ├── test_histogrammer.py │ ├── test_meshgrid_data_dict.py │ ├── test_misc_utils.py │ ├── test_monitr_filtering.py │ ├── test_nodes.py │ ├── test_numtools.py │ ├── test_plotting.py │ ├── test_qcodes_data.py │ ├── test_qcodes_flow.py │ └── test_scale_units.py ├── run_gui_test.py └── scripts │ ├── h5py_concurrent_rw_lock.py │ └── h5py_concurrent_rw_swmr.py └── test_requirements.txt /.github/actions/install-dependencies-and-plottr/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/.github/actions/install-dependencies-and-plottr/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/README.md -------------------------------------------------------------------------------- /apps/autoplot_ddh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/apps/autoplot_ddh5.py -------------------------------------------------------------------------------- /apps/inspectr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/apps/inspectr.py -------------------------------------------------------------------------------- /apps/templates/autoplot_ddh5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/apps/templates/autoplot_ddh5.bat -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/api/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/api/data.rst -------------------------------------------------------------------------------- /doc/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/api/index.rst -------------------------------------------------------------------------------- /doc/api/node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/api/node.rst -------------------------------------------------------------------------------- /doc/api/plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/api/plot.rst -------------------------------------------------------------------------------- /doc/concepts/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/concepts/data.rst -------------------------------------------------------------------------------- /doc/concepts/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/concepts/index.rst -------------------------------------------------------------------------------- /doc/concepts/nodes.bak.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/concepts/nodes.bak.rst -------------------------------------------------------------------------------- /doc/concepts/nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/concepts/nodes.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/examples/Inferring grids.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/examples/Inferring grids.ipynb -------------------------------------------------------------------------------- /doc/examples/Live plotting qcodes data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/examples/Live plotting qcodes data.ipynb -------------------------------------------------------------------------------- /doc/examples/Simple Live plotting example with DDH5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/examples/Simple Live plotting example with DDH5.ipynb -------------------------------------------------------------------------------- /doc/examples/autonode_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/examples/autonode_app.py -------------------------------------------------------------------------------- /doc/examples/node_with_dimension_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/examples/node_with_dimension_selector_widget.py -------------------------------------------------------------------------------- /doc/img/plot-node-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/img/plot-node-system.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/intro.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/nodes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/nodes/index.rst -------------------------------------------------------------------------------- /doc/plotnode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/plotnode.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /plottr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/__init__.py -------------------------------------------------------------------------------- /plottr/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/_version.py -------------------------------------------------------------------------------- /plottr/analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plottr/analyzer/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/analyzer/base.py -------------------------------------------------------------------------------- /plottr/analyzer/fitters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/analyzer/fitters/__init__.py -------------------------------------------------------------------------------- /plottr/analyzer/fitters/experiment_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/analyzer/fitters/experiment_functions.py -------------------------------------------------------------------------------- /plottr/analyzer/fitters/fitter_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/analyzer/fitters/fitter_base.py -------------------------------------------------------------------------------- /plottr/analyzer/fitters/generic_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/analyzer/fitters/generic_functions.py -------------------------------------------------------------------------------- /plottr/analyzer/others/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plottr/analyzer/others/find_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/analyzer/others/find_max.py -------------------------------------------------------------------------------- /plottr/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plottr/apps/appmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/appmanager.py -------------------------------------------------------------------------------- /plottr/apps/apprunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/apprunner.py -------------------------------------------------------------------------------- /plottr/apps/autoplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/autoplot.py -------------------------------------------------------------------------------- /plottr/apps/inspectr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/inspectr.py -------------------------------------------------------------------------------- /plottr/apps/json_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/json_viewer.py -------------------------------------------------------------------------------- /plottr/apps/monitr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/monitr.py -------------------------------------------------------------------------------- /plottr/apps/ui/Monitr_UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/ui/Monitr_UI.py -------------------------------------------------------------------------------- /plottr/apps/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plottr/apps/ui/monitr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/ui/monitr.py -------------------------------------------------------------------------------- /plottr/apps/ui/monitr.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/ui/monitr.ui -------------------------------------------------------------------------------- /plottr/apps/watchdog_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/apps/watchdog_classes.py -------------------------------------------------------------------------------- /plottr/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plottr/config/plottrcfg_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/config/plottrcfg_main.py -------------------------------------------------------------------------------- /plottr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/data/__init__.py -------------------------------------------------------------------------------- /plottr/data/datadict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/data/datadict.py -------------------------------------------------------------------------------- /plottr/data/datadict_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/data/datadict_storage.py -------------------------------------------------------------------------------- /plottr/data/qcodes_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/data/qcodes_dataset.py -------------------------------------------------------------------------------- /plottr/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/gui/__init__.py -------------------------------------------------------------------------------- /plottr/gui/data_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/gui/data_display.py -------------------------------------------------------------------------------- /plottr/gui/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/gui/tools.py -------------------------------------------------------------------------------- /plottr/gui/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/gui/widgets.py -------------------------------------------------------------------------------- /plottr/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/icons.py -------------------------------------------------------------------------------- /plottr/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/log.py -------------------------------------------------------------------------------- /plottr/node/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/__init__.py -------------------------------------------------------------------------------- /plottr/node/autonode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/autonode.py -------------------------------------------------------------------------------- /plottr/node/data_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/data_selector.py -------------------------------------------------------------------------------- /plottr/node/dim_reducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/dim_reducer.py -------------------------------------------------------------------------------- /plottr/node/filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plottr/node/filter/correct_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/filter/correct_offset.py -------------------------------------------------------------------------------- /plottr/node/fitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/fitter.py -------------------------------------------------------------------------------- /plottr/node/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/grid.py -------------------------------------------------------------------------------- /plottr/node/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/histogram.py -------------------------------------------------------------------------------- /plottr/node/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/node.py -------------------------------------------------------------------------------- /plottr/node/scaleunits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/scaleunits.py -------------------------------------------------------------------------------- /plottr/node/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/node/tools.py -------------------------------------------------------------------------------- /plottr/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/__init__.py -------------------------------------------------------------------------------- /plottr/plot/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/base.py -------------------------------------------------------------------------------- /plottr/plot/mpl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/mpl/__init__.py -------------------------------------------------------------------------------- /plottr/plot/mpl/autoplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/mpl/autoplot.py -------------------------------------------------------------------------------- /plottr/plot/mpl/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/mpl/plotting.py -------------------------------------------------------------------------------- /plottr/plot/mpl/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/mpl/widgets.py -------------------------------------------------------------------------------- /plottr/plot/pyqtgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/pyqtgraph/__init__.py -------------------------------------------------------------------------------- /plottr/plot/pyqtgraph/autoplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/pyqtgraph/autoplot.py -------------------------------------------------------------------------------- /plottr/plot/pyqtgraph/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/plot/pyqtgraph/plots.py -------------------------------------------------------------------------------- /plottr/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/py.typed -------------------------------------------------------------------------------- /plottr/resource/gfx/2dscatter_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/2dscatter_plot.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/axes_assign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/axes_assign.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/colormesh_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/colormesh_plot.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/complete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/complete.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/data_columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/data_columns.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/default_file_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/default_file_icon.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/grid.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/image_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/image_plot.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/interrupted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/interrupted.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/json_file_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/json_file_icon.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/loading_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/loading_gif.gif -------------------------------------------------------------------------------- /plottr/resource/gfx/multi_trace_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/multi_trace_plot.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/png_file_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/png_file_icon.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/single_trace_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/single_trace_plot.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/star.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/trash.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/txt_file_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/txt_file_icon.svg -------------------------------------------------------------------------------- /plottr/resource/gfx/xy_select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/resource/gfx/xy_select.svg -------------------------------------------------------------------------------- /plottr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/utils/__init__.py -------------------------------------------------------------------------------- /plottr/utils/find_scale_and_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/utils/find_scale_and_prefix.py -------------------------------------------------------------------------------- /plottr/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/utils/misc.py -------------------------------------------------------------------------------- /plottr/utils/num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/utils/num.py -------------------------------------------------------------------------------- /plottr/utils/testdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/utils/testdata/__init__.py -------------------------------------------------------------------------------- /plottr/utils/testdata/dispersive_qubit_readout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/utils/testdata/dispersive_qubit_readout.py -------------------------------------------------------------------------------- /plottr/utils/testdata/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/plottr/utils/testdata/testdata.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/autoplot_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/apps/autoplot_app.py -------------------------------------------------------------------------------- /test/apps/custom_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/apps/custom_app.py -------------------------------------------------------------------------------- /test/apps/fitter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/apps/fitter_test.py -------------------------------------------------------------------------------- /test/apps/test_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/apps/test_histograms.py -------------------------------------------------------------------------------- /test/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/gui/correct_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/correct_offset.py -------------------------------------------------------------------------------- /test/gui/data_display_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/data_display_widgets.py -------------------------------------------------------------------------------- /test/gui/data_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/data_selector.py -------------------------------------------------------------------------------- /test/gui/ddh5_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/ddh5_loader.py -------------------------------------------------------------------------------- /test/gui/dimension_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/dimension_assignment.py -------------------------------------------------------------------------------- /test/gui/dimension_selection_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/dimension_selection_widgets.py -------------------------------------------------------------------------------- /test/gui/grid_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/grid_options.py -------------------------------------------------------------------------------- /test/gui/mpl_figuremaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/mpl_figuremaker.py -------------------------------------------------------------------------------- /test/gui/pyqtgraph_figuremaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/pyqtgraph_figuremaker.py -------------------------------------------------------------------------------- /test/gui/pyqtgraph_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/pyqtgraph_testing.py -------------------------------------------------------------------------------- /test/gui/simple_2d_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/gui/simple_2d_plot.py -------------------------------------------------------------------------------- /test/prototyping/autoplot testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/prototyping/autoplot testing.ipynb -------------------------------------------------------------------------------- /test/prototyping/new_data_methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/prototyping/new_data_methods.ipynb -------------------------------------------------------------------------------- /test/prototyping/plottrcfg_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/prototyping/plottrcfg_main.py -------------------------------------------------------------------------------- /test/prototyping/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/prototyping/test_data.py -------------------------------------------------------------------------------- /test/pytest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/pytest/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/conftest.py -------------------------------------------------------------------------------- /test/pytest/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | qt_api=pyqt5 -------------------------------------------------------------------------------- /test/pytest/test_app_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_app_manager.py -------------------------------------------------------------------------------- /test/pytest/test_correct_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_correct_offset.py -------------------------------------------------------------------------------- /test/pytest/test_data_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_data_dict.py -------------------------------------------------------------------------------- /test/pytest/test_data_dict_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_data_dict_base.py -------------------------------------------------------------------------------- /test/pytest/test_data_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_data_selector.py -------------------------------------------------------------------------------- /test/pytest/test_ddh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_ddh5.py -------------------------------------------------------------------------------- /test/pytest/test_dim_reducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_dim_reducer.py -------------------------------------------------------------------------------- /test/pytest/test_gridder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_gridder.py -------------------------------------------------------------------------------- /test/pytest/test_histogrammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_histogrammer.py -------------------------------------------------------------------------------- /test/pytest/test_meshgrid_data_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_meshgrid_data_dict.py -------------------------------------------------------------------------------- /test/pytest/test_misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_misc_utils.py -------------------------------------------------------------------------------- /test/pytest/test_monitr_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_monitr_filtering.py -------------------------------------------------------------------------------- /test/pytest/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_nodes.py -------------------------------------------------------------------------------- /test/pytest/test_numtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_numtools.py -------------------------------------------------------------------------------- /test/pytest/test_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_plotting.py -------------------------------------------------------------------------------- /test/pytest/test_qcodes_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_qcodes_data.py -------------------------------------------------------------------------------- /test/pytest/test_qcodes_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_qcodes_flow.py -------------------------------------------------------------------------------- /test/pytest/test_scale_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/pytest/test_scale_units.py -------------------------------------------------------------------------------- /test/run_gui_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/run_gui_test.py -------------------------------------------------------------------------------- /test/scripts/h5py_concurrent_rw_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/scripts/h5py_concurrent_rw_lock.py -------------------------------------------------------------------------------- /test/scripts/h5py_concurrent_rw_swmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test/scripts/h5py_concurrent_rw_swmr.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsforexperiments/plottr/HEAD/test_requirements.txt --------------------------------------------------------------------------------