Format Matplotlib for scientific plotting
Project description
Science Plots
Format Matplotlib for scientific plotting
This repo has Matplotlib styles to format your plots for scientific papers, presentations and theses.
Installation
The easiest way to install SciencePlots is using pip:
python -m pip install git+https://github.com/garrettj403/SciencePlots.git
This will move all of the *.mplstyle files into the appropriate directory. You can also do this manually, if you like. First, clone the repository and then copy all of the *.mplstyle files into your Matplotlib style directory. If you're not sure where this is, in an interactive python console type:
import matplotlib
print(matplotlib.get_configdir())
You should get back something like /home/garrett/.matplotlib. You would then put the *.mplstyle files in /home/garrett/.matplotlib/stylelib/ (you may need to create the stylelib directory).
Using the Styles
science.mplstyle is the main style from this repo. Whenever you want to use it, simply add the following to the top of your python script:
import matplotlib.pyplot as plt
plt.style.use('science')
You can also combine multiple styles together by:
plt.style.use(['science','ieee'])
In this case, the ieee style will override some of the parameters from the main science style in order to configure the plot for IEEE papers (column width, fontsizes, etc.).
To use any of the styles temporarily, you can use:
with plt.style.context(['science', 'ieee']):
plt.figure()
plt.plot(x, y)
plt.show()
Contribution
Please feel free to add to this repo! For example, it would be good to add styles for different journals or perhaps new color cycles.
Examples
The science style:
The science + ieee styles:
IEEE requires figures to be readable when printed in black and white. The ieee style also sets the figure width to fit within one column of an IEEE paper.
The science + scatter styles:
You can also combine these styles with the other styles that come with Matplotlib. For example, the dark_background + science + high-vis styles:
Note: See the examples/ directory for more!
Color Cycles
The high-vis color cycle:
The bright color cycle:
The vibrant color cycle:
The muted color cycle:
The retro color cycle:
Note: The bright, vibrant and muted styles are from Paul Tol's website (https://personal.sron.nl/~pault/). They are color-blind safe!
SciencePlots in Academic Papers
The following papers use SciencePlots:
-
J. Garrett, et al., "A Nonlinear Transmission Line Model for Simulating Distributed SIS Frequency Multipliers," IEEE Trans. THz Sci. Technol.
-
J. Garrett, et al., "Simulating the Behavior of a 230 GHz SIS Mixer Using Multi-Tone Spectral Domain Analysis," IEEE Trans. THz Sci. Technol., vol. 9, no. 9, pp. 540-548, Nov. 2019.
-
J. Garrett, A. Pollak, G. Yassin, and M. Henry, "A Compact and Easy to Fabricate E-plane Waveguide Bend," IEEE Microw. Wireless Compon. Lett., vol. 29, no. 8, pp. 529-531, Aug. 2019.
-
J. Garrett, "A 230 GHz Focal Plane Array Using a Wide IF Bandwidth SIS Receiver," DPhil thesis, University of Oxford, Oxford, UK, 2018.
Feel free to add your paper to the list if you use SciencePlots!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file SciencePlots-1.0.2.tar.gz.
File metadata
- Download URL: SciencePlots-1.0.2.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5254ef0b0127ed31007558dd7320259d0cd1712a6d64880b683e8ee8395212c
|
|
| MD5 |
e0ea9e4e8373412c6b48b906a1503d47
|
|
| BLAKE2b-256 |
84daff193901e17a23413b191ae9b74381ac7514e23f0aa636ed3fc9e248c00d
|