↧
Answer by Mark for Multiple grids on matplotlib
How about something like this (adapted from here):from pylab import *from matplotlib.ticker import MultipleLocator, FormatStrFormattert = arange(0.0, 100.0, 0.1)s = sin(0.1*pi*t)*exp(-t*0.01)ax =...
View ArticleMultiple grids on matplotlib
I'm making plots in Python and matplotlib, which I found huge and flexible, till now.The only thing I couldn't find how to do, is to make my plot have multiple grids.I've looked into the documentation,...
View Article
More Pages to Explore .....