sda.plot.plot_grid ================== .. py:module:: sda.plot.plot_grid Functions --------- .. autoapisummary:: sda.plot.plot_grid.plot_grid Module Contents --------------- .. py:function:: plot_grid(ax, xmin, xmax, x_minor, x_major, ymin, ymax, y_minor, y_major, alpha_minor = 0.4, alpha_major = 0.7) Plot a grid on given ax. :param ax: a matplotlib.pyplot.Axes object. :type ax: :py:class:`plt.Axes` :param xmin: starting point for the x lines. :type xmin: :py:class:`float` :param xmax: ending point for the x lines. :type xmax: :py:class:`float` :param x_minor: width between minor x lines. :type x_minor: :py:class:`float` :param x_major: width between major x lines. :type x_major: :py:class:`float` :param ymin: starting point for the y lines. :type ymin: :py:class:`float` :param ymax: ending point for the y lines. :type ymax: :py:class:`float` :param y_minor: height between minor y lines. :type y_minor: :py:class:`float` :param y_major: height between major y lines. :type y_major: :py:class:`float` :param alpha_minor: alpha channel for minor lines. :type alpha_minor: :py:class:`float`, *optional* :param alpha_major: alpha channel for major lines. :type alpha_major: :py:class:`float`, *optional*