Tag: Plots

Creating Scientific Plots the Easy Way With scienceplots and matplotlib

When writing articles for publication in academic journals, the layout and style of the figures are expected to conform to a predefined format. This ensures consistency across all of that publication's articles and that any included figures are high quality when printed. Python is widely used...

Histograms and Density Plots in Python

Plotting a single variable seems like it should be easy. With only one dimension how hard can it be to effectively display the data? For a long time, I got by using the simple histogram which shows the location of values, the spread of the data, and the shape of the data (normal, skewed, bimodal, et...