toolsforexperiments / plottr

Licence: MIT license
A flexible plotting and data analysis tool.

Programming Languages

python
139335 projects - #7 most used programming language
Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to plottr

labplot
LabPlot is a FREE, open source and cross-platform Data Visualization and Analysis software accessible to everyone.
Stars: ✭ 107 (+234.38%)
Mutual labels:  data-analysis, plotting
Freud
Powerful, efficient particle trajectory analysis in scientific Python.
Stars: ✭ 118 (+268.75%)
Mutual labels:  science, data-analysis
Abipy
Open-source library for analyzing the results produced by ABINIT
Stars: ✭ 69 (+115.63%)
Mutual labels:  science, physics
pbcpy
Python package providing some useful tools when dealing with molecules and materials under periodic boundary conditions and uniform grids. This is a mirror of https://gitlab.com/ales.genova/pbcpy
Stars: ✭ 18 (-43.75%)
Mutual labels:  science, physics
Artiq
A leading-edge control system for quantum information experiments
Stars: ✭ 245 (+665.63%)
Mutual labels:  science, physics
Core
The core source repository for the Cherab project.
Stars: ✭ 26 (-18.75%)
Mutual labels:  science, physics
Plotters
A rust drawing library for high quality data plotting for both WASM and native, statically and realtimely 🦀 📈🚀
Stars: ✭ 1,287 (+3921.88%)
Mutual labels:  science, plotting
Atomic-Periodic-Table.Android
Atomic - Periodic Table
Stars: ✭ 33 (+3.13%)
Mutual labels:  science, physics
Math Science Video Lectures
List of Science courses with video lectures
Stars: ✭ 219 (+584.38%)
Mutual labels:  science, physics
Awesome Scientific Python
A curated list of awesome scientific Python resources
Stars: ✭ 127 (+296.88%)
Mutual labels:  science, data-analysis
multiphysics
Interactive Multiphysics Simulation for Everyone
Stars: ✭ 41 (+28.13%)
Mutual labels:  science, physics
PyCORN
A script to extract data from ÄKTA/UNICORN result-files (.res)
Stars: ✭ 30 (-6.25%)
Mutual labels:  science, plotting
mightyscape-1.X
A maintained extension collection for Inkscape 1.0+, working on Windows and Linux
Stars: ✭ 23 (-28.12%)
Mutual labels:  science, physics
Silx
silx toolkit
Stars: ✭ 69 (+115.63%)
Mutual labels:  science, plotting
cplot
🌈 Plot complex functions
Stars: ✭ 75 (+134.38%)
Mutual labels:  science, plotting
Refractiveindex.info Database
Database of optical constants
Stars: ✭ 87 (+171.88%)
Mutual labels:  science, physics
lumin
LUMIN - a deep learning and data science ecosystem for high-energy physics.
Stars: ✭ 45 (+40.63%)
Mutual labels:  science, physics
arogozhnikov.github.io
'Brilliantly wrong' blog, Machine Learning visualizations live here
Stars: ✭ 120 (+275%)
Mutual labels:  science, physics
Landgreen.github.io
Landgreen's public site: physics notes, n-gon
Stars: ✭ 125 (+290.63%)
Mutual labels:  science, physics
mxfactorial
a payment application intended for deployment by the united states treasury
Stars: ✭ 36 (+12.5%)
Mutual labels:  science, physics

plottr: modular data plotting and processing

PyPi version PyPI python versions Docs Build on GitHub actions

A framework for inspecting data, based on flowcharts from pyqtgraph. plottr's main aim is to allow the user to define custom data processing flows and plotting. A particular use case is data filtering and plotting.

Documentation:

https://plottr.readthedocs.io (work in progress...)

Quickstart

Installation

Plottr is installable from pypi with pip install plottr

Plottr requires either the PyQt5 or Pyside2 gui framework. To install with PyQt5 or Pyside2 backend you can do pip install plottr[PyQt5] or pip install plottr[Pyside2]

Note that if you have installed pyqt from (Ana)Conda you should not use any of these targets but do pip install plottr or install Plottr from conda forge:

conda config --add channels conda-forge
conda config --set channel_priority strict
conda install plottr

To install from source: clone the repo, and install using pip install -e .

inspectr: QCoDeS dataset inspection and (live) plotting

You can use the inspectr tool to get a simple overview over QCoDeS database files, and plot datasets contained in the database.

To use: run plottr-inspectr [--dbpath <path to your .db file>]

As an alternative from the root of the cloned plottr repository, run python apps/inspectr.py [--dbpath <path to your .db file>]

For basic instructions, check out the Notebook Live plotting qcodes data under /doc/examples.

Some notes on installing

Note: this package is not compatible with the original plottr tool. You might want to install freshly if you still use the old version.

Requirements:

  • python >= 3.7 (f-strings...)
  • the usual: numpy, mpl, ...
  • pandas >= 0.22
  • xarray
  • pyqtgraph >= 0.12.1

Recent changes:

See the plottr GitHub Releases page for versions and their changelogs

v0.10.0 2022-07-14

Added

v0.9.1 2022-01-12

Added

  • Fixed a crash bug with python 3.10 (#257)

v0.9.0 2021-12-20

Added

  • Add new analysis node for creating histogram of data by @wpfff in #241

Fixed

  • bugfix: prevent flushing when we are updating data. by @wpfff in #243
  • fix type checking with mypy 920 by @jenshnielsen in #248
  • Bump minimum version of pyqtgraph by @jenshnielsen in #247

v0.8.1 2021-11-30

Added

  • Test with python 3.10 and mark as supported (#238)

Fixed

  • add missing init file to config dir (#236)
  • Use a regular install in tests (#237)

v0.8.0 2021-11-11

Added

  • Inspectr: tag a run with a star () or cross () icon, filter by those, also show dataset metadata next to parameters and snapshot (#229)
  • Improvements to monitr: more stability in adding data to ddh5, better performance by making data loading multithreaded and running reach plot window in a separate process (#219)
  • Added pyqtgraph backend for plotting that can be used instead of matplotlib (Example for how to select can be found in test/apps/autoplot_app.py) (#215, #218)

Fixed

  • Fix/invaliddata: small fixes when data contains a lot of invalid entries (#226)
  • Fix in shape recognition when adding data (#220)

Behind the scenes

  • Add minimal versions to dependencies (#201)
  • Make the .gitignore proper (#73)
  • add dependabot (#208)
  • Fix typechecking with mypy 0.9xx (#207)
  • clarify install instructions wrt qt and mention conda forge (#202)

2021-06-08

Added

  • refactoring the plotting system (#166)
  • Add version log message to main __init__ (#175)

Fixed

  • Fix crop if less than one row is not nan (#198)
  • Fix rgba error (#199)
  • Allow empty dataset if datadict is none (#195)

Behind the scenes

  • Modernize setup files (#194)
  • packaging cleanups (#177)
  • upgrade versioneer to 0.19 (#176)

2021-02-16

Added

  • Add copy content features to inspectr and autoplot windows, specifically
    • a new Copy pop up menu for copying content of cells in inspectr
    • a new Copy metadata button in plot window for copying info about the dataset to clipboard

Fixed

  • remove redundant information between the optional "info" box on the plot and the plot title

2021-02-08

  • Drop support for Python 3.6 and support type-checking with qcodes 0.21.0
  • Fix type-checking with numpy 1.20

Fixed

  • Fixed y-axis to not show axis-label if more than one plot is selected in 1D single-plot show.

2020-08-21

  • Workaround for bug with pyqt installed via conda that would result in blank icons.
  • Add experimental support for using Pyside2 as an alternative to PyQt5

2020-08-06

Added

  • Entry points for inspectr (plottr-inspectr) and autoplot (plottr-autoplot-ddh5)
  • LICENSE file has been added (no change to license of the code)
  • setup.py has been tweeked to ensure that sdist and bdist_wheel packages are generated correctly

2020-06-05

Added

  • Usable version of hdf5 file support. can use the apps/monitr.py script to launch a tool that allows easy (live) plotting.

2020-04-24

Fixed

  • there were several issues/annoyances that caused (minor) issues with grid handling and plotting in rare-ish circumstances. Most of them should be fixed now.

Added

  • A few docs and examples, mostly about grid usage.

2020-04-17

Changed

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].