https://github.com/ccampjr/sciplot-pyqt
A Matplotlib-wrapped user-interface for creating and editing publication-ready images and plots
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 4 committers (25.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.9%) to scientific vocabulary
Keywords
matplotlib
plotting
pyqt5
python
scientific-visualization
Last synced: 5 months ago
·
JSON representation
Repository
A Matplotlib-wrapped user-interface for creating and editing publication-ready images and plots
Basic Info
Statistics
- Stars: 53
- Watchers: 4
- Forks: 15
- Open Issues: 5
- Releases: 0
Topics
matplotlib
plotting
pyqt5
python
scientific-visualization
Created over 9 years ago
· Last pushed about 4 years ago
Metadata Files
Readme
Changelog
License
README.rst
.. -*- mode: rst -*-
.. image:: https://travis-ci.org/CCampJr/SciPlot-PyQt.svg?branch=master
:alt: Travis CI Status
:target: https://travis-ci.org/CCampJr/SciPlot-PyQt
.. image:: https://ci.appveyor.com/api/projects/status/github/CCampJr/SciPlot-PyQt?branch=master&svg=true
:alt: AppVeyor CI Status
:target: https://ci.appveyor.com/project/CCampJr/sciplot-pyqt
.. image:: https://img.shields.io/pypi/v/sciplot-pyqt.svg
:alt: PyPI Project Page
:target: https://pypi.org/project/sciplot-pyqt/
.. image:: https://img.shields.io/pypi/pyversions/sciplot-pyqt.svg
:alt: PyPI - Python Version
:target: https://pypi.org/project/sciplot-pyqt/
.. image:: https://img.shields.io/badge/PyQt-5-ff69b4.svg
:alt: PyQt5
:target: https://www.riverbankcomputing.com/software/pyqt/download5
.. image:: https://img.shields.io/badge/License-NIST%20Public%20Domain-green.svg
:alt: NIST Public Domain
:target: https://github.com/CCampJr/SciPlot-PyQt/blob/master/LICENSE.md
SciPlot-PyQt: Publication-ready scientific plotting for Python
===============================================================
SciPlot-PyQt (aka SciPlot) is a user-interface/matplotlib wrapper built with
PyQt5 that allows interactive plotting through an embedded matplotlib canvas.
It enables fast and easy publication-ready plots and images:
- Interactive plotting
- Theme and style editing (TODO)
- Figure saving and opening for later editing (TODO)
Dependencies
------------
**Note**: These are the developmental system specs. Older versions of certain
packages may work.
- python >= 3.4
- Tested with 3.6.7, 3.7.1
- numpy
- PyQT5 (5.5.* or 5.6.*)
- Tested with 5.6, 5.8.1, 5.12
- matplotlib (1.*, 2.*, 3.*)
- Sphinx (1.5.2) (Only for building documentation)
Known Issues
------------
1. **IPython**: SciPlot has problems when imported and ran via sciplot.main() or %run from within
IPython. It appears to work as expected when called through a normal Python interpreter.
2. **PyQt 5.7**: There is a bug in PyQt 5.7.* that will prevent SciPlot's tables from showing the
individual plot entries (see https://www.riverbankcomputing.com/pipermail/pyqt/2017-January/038483.html).
Apparently, this will be fixed in 5.7.2.
- As WinPython 3.5.2.3Qt5 and 3.5.2.2Qt5 use PyQt 5.7.*, it is advised to use WinPython 3.5.2.1Qt5 or
3.4.4.5Qt5 until the matter is sorted out.
- Alternatively, one can uninstall pyqt5.7.* and force an install of <= 5.6.*.
3. **MATPLOTLIB 2.0**: SciPlot version solder than 0.1.4 will crash with MPL 2.* as
several changes have been made to the MPL API.
- For v0.1.3, the dev-MPL2 branch should address those problems
- v0.1.4 is a merge of v0.1.3 and the dev-MPL2 branch (with other updates)
Installation
------------
**Note**: the installer only checks for the dependencies of matplotlib and
numpy. PyQt5 is not checked for, though, it is also required. See Depencies
above for more information and requirements.
Using pip (hard install)
~~~~~~~~~~~~~~~~~~~~~~~~
.. code::
# Only Python 3.* installed
pip install sciplot-pyqt
# If you have both Python 2.* and 3.* you may need
pip3 install sciplot-pyqt
Using pip (soft install [can update with git])
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code::
# Make new directory for sciplot-pyqt and enter it
# Clone from github
git clone https://github.com/CCampJr/SciPlot-PyQt.git
# Only Python 3.* installed
pip install -e .
# If you have both Python 2.* and 3.* you may need instead
pip3 install -e .
# To update in the future
git pull
Using setuptools
~~~~~~~~~~~~~~~~
You will need to `download the repository `_
or clone the repository with git:
.. code::
# Make new directory for sciplot-pyqt and enter it
# Clone from github
git clone https://github.com/CCampJr/SciPlot-PyQt.git
Perform the install **without building the documentation**:
.. code::
python setup.py install
Perform the install **and build the documentation** (see dependencies above):
.. code::
python setup.py build_sphinx
python setup.py install
Usage
-----
.. code:: python
import sciplot
sp = sciplot.main()
**Note** Sciplot-pyqt relies on an existing, active Qt5 QApplication instance
to operate. Some versions of Matplotlib 1.5.* provide this, others do not.
Matplotlib 2.* seems to always provide this functionality.
**If** you perform the examples below and just a non-repsonsive white window
appears, follow up the plotting commands with:
.. code:: python
sp.app.exec_()
Sciplot tests for this and will provide you with a message to your terminal:
.. code::
No QApplication instance (this is common with certain
version of Matplotlib). Creating one.
You will need to exec manually after you finish plotting.
-----------Example---------------
import sciplot
sp = sciplot.main()
# Plot a line
sp.plot((0,1),(0,1))
# Start the QApplication
sp.app.exec_()
Example
~~~~~~~
.. code:: python
sp.plot((0,1),(2,3),label='Line', x_label='X', y_label='Y', ls='--')
sp.fill_between((0,1),(1,2),(3,4),label='Fill Between', color='r', alpha=0.25)
.. image:: ./Screenshot.png
.. code:: python
sp.hist(r, bins=100, label='Histogram', color=[0, .2, .3],
x_label='Amplitude', y_label='Counts', alpha=0.5)
.. image:: ./Screenshot2.png
.. code:: python
sp.imshow(r, clim=[25,75], cmap='viridis', label='Imshow', x_label='X (pix)',
y_label='Y (pix)')
.. image:: ./Screenshot3.png
NONLICENSE
----------
This software was developed at the National Institute of Standards and Technology (NIST) by
employees of the Federal Government in the course of their official duties. Pursuant to
`Title 17 Section 105 of the United States Code `_,
this software is not subject to copyright protection and is in the public domain.
NIST assumes no responsibility whatsoever for use by other parties of its source code,
and makes no guarantees, expressed or implied, about its quality, reliability, or any other characteristic.
Specific software products identified in this open source project were used in order
to perform technology transfer and collaboration. In no case does such identification imply
recommendation or endorsement by the National Institute of Standards and Technology, nor
does it imply that the products identified are necessarily the best available for the
purpose.
Contact
-------
Charles H Camp Jr: `charles.camp@nist.gov `_
Contributors
-------------
Charles H Camp Jr, Mona Lee, Xavier Audier
Owner
- Name: Charles
- Login: CCampJr
- Kind: user
- Repositories: 5
- Profile: https://github.com/CCampJr
Optical scientist and engineer, developing new microscope technologies for biology and medicine.
GitHub Events
Total
- Watch event: 3
Last Year
- Watch event: 3
Committers
Last synced: about 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| Charles H Camp Jr | c****p@n****v | 239 |
| Xavier Audier | x****r@y****r | 1 |
| mnl15 | m****3@g****m | 1 |
| Charles | c****r@g****m | 1 |
Committer Domains (Top 20 + Academic)
nist.gov: 1
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 3
- Total pull requests: 9
- Average time to close issues: N/A
- Average time to close pull requests: about 17 hours
- Total issue authors: 2
- Total pull request authors: 2
- Average comments per issue: 0.0
- Average comments per pull request: 0.22
- Merged pull requests: 7
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- CCampJr (2)
- pllim (1)
Pull Request Authors
- CCampJr (8)
- XavierAudier (1)
Top Labels
Issue Labels
bug (1)
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 38 last-month
- Total dependent packages: 0
- Total dependent repositories: 1
- Total versions: 7
- Total maintainers: 1
pypi.org: sciplot-pyqt
A small matplotlib wrapper/UI for creating publication-ready plots, graphs, and images
- Homepage: http://github.com/CCampJr/SciPlot-PyQt
- Documentation: https://sciplot-pyqt.readthedocs.io/
- License: Public Domain
-
Latest release: 0.2.3
published about 4 years ago
Rankings
Docker downloads count: 4.3%
Forks count: 9.6%
Stargazers count: 9.8%
Dependent packages count: 10.1%
Average: 14.6%
Dependent repos count: 21.6%
Downloads: 32.3%
Maintainers (1)
Last synced:
6 months ago
Dependencies
setup.py
pypi
- matplotlib *
- numpy *