pyquickbench.all_plot_intents#

all_plot_intents = ['single_value', 'points', 'same', 'curve_color', 'curve_linestyle', 'curve_pointstyle', 'violin', 'subplot_grid_x', 'subplot_grid_y', 'reduction_avg', 'reduction_min', 'reduction_max', 'reduction_median', 'reduction_sum', 'reduction_logavg', 'reduction_first_el', 'reduction_last_el', 'reduction_random_el']#

Available plot intents.

Dictionary of all available plot intents to be used in pyquickbench.plot_benchmark().

  • "single_value" : A single value is plotted. Requires either single_values_val or single_values_idx to be set.

  • "points" : Values are plotted as points along a curve.

  • "same" : All values are plotted the same way.

  • "curve_color" : Values are plotted as different curve colors.

  • "curve_linestyle" : Values are plotted as different curve line styles.

  • "curve_pointstyle" : Values are plotted as different markers along the curve.

  • "violin" : Values are plotted as a violin dispersion plot.

  • "subplot_grid_x" : Values are plotted on different plot aligned horizontally.

  • "subplot_grid_y" : Values are plotted on different plot aligned vertically.

  • "reduction_[red]" : Values are reduced before plotting. [red] can be any string in pyquickbench.all_reductions.

See Also