coplot.plot_settings¶
-
class
coplot.plot_settings.PlotSettings(set_fig=False, figsize=(6.300000000000001, 4.7250000000000005))[source]¶ -
-
setting(ax=None, location=None, lims=None, set_labels=True, labels=None, ticks_size=12, rotation=None, major_locator_N=None, major_locator_length=None, minor_locator=True, minor_locator_N=None, show_xticks=True, show_yticks=True, show_xticklabels=True, show_yticklabels=True, show_xlabel=True, show_ylabel=True, old_ticksStyle=False, rightTopTicks=True)[source]¶ Set the attribute of panels.
Parameters: - lims – [min_x, max_x, min_y, max_y], where min_* or max_* is a real number or None
- labels – the label of a panel
- ticks_size – the font size of ticks
- rotation – the rotation of the label of ticks
- major_locator_N – the number of major locators
- minor_locator – if the minor_locator is True(False), show(don’t show) the minor locators
- minor_locator_N – the number of minor locators
- show_xticks – if show_xticks is True(False), show(don’t show) ticks of X axis
- show_yticks – if show_yticks is True(False), show(don’t show) ticks of Y axis
- show_xticklabels – if True(False), show(don’t show) the labels of ticks of X axis
- show_yticklabels – if True(False), show(don’t show) the labels of ticks of Y axis
- show_xlabel – if True(False), show(don’t show) the labels of X axis
- show_ylabel – if True(False), show(don’t show) the labels of Y axis
-