h5analysis.plot_exporter.create_figure

h5analysis.plot_exporter.create_figure(figsize=None, x_minor_ticks=None, x_major_ticks=None, y_minor_ticks=None, y_major_ticks=None, top=True, right=True, fontsize_axes='medium', fontsize_labels='medium', fontsize_title='medium', title_pad=8, xlabel='', ylabel='', title='', xlim=None, ylim=None, **kwargs)

Create a matplotlib plot window

Parameters:
  • figsize (tuple) – determines size of plot

  • x_minor_ticks (float) – distance between minor ticks on primary axis

  • x_major_ticks (float) – distance between major ticks on primary axis

  • y_minor_ticks (float) – distance between minor ticks on secondary axis

  • y_major_ticks (float) – distance between major ticks on secondary axis

  • top (Boolean) – Display ticks on top of the plot

  • right (Boolean) – Display ticks on the right of the plot

  • fontsize_axes (string or int) – Set the fontsize of the axes ticks

  • fontsize_labels (string or int) – Set fontsize of the axis labels

  • fontsize_title (string or int) – Set fontsize of the title

  • title_pad (int) – Padding between title and the top of the plot

  • xlabel (string) – Label of the primary axis

  • ylabel (string) – Label of the secondary axis

  • title (string) – Title displayed at the top of the plot

  • xlim (tuple) – Limits the visible x-range

  • ylim (tuple) – Limits the visible y-range