-
Pyplot: subplot_mosaic
One particular thing which always drives me crazy is adjusting panels in somewhat more complicated plots using Python’s subplots. However, recently I found an extremely useful function simplifying this a lot: pyplot.subplot_mosaic ! This function allows us to create really exotic configurations of panels just by sketching what we want directly in Python. What else…
-
Pyplot: Different scales for normalized colorbars
When visualizing two-dimensional data sets, certain types of heatmaps are often useful. In many such cases, there is some reasonable „center“ of the colormap. For example for a topographic map indicating elevations the sea level is often such a baseline. However, mountains often have a larger elevation range than water has depth range. In such…