ternary_plot_winners_at_equilibrium

poisson_approval.ternary_plot_winners_at_equilibrium(simplex_to_profile, scale, title='Winners at equilibrium', legend_title='Winners', meth='analyzed_strategies_ordinal', file_save_data=None, **kwargs)[source]

Shortcut: ternary plot for the winners at equilibrium.

Parameters
  • simplex_to_profile (SimplexToProfile) – This is responsible for generating the profiles.

  • scale (Number) – Scale of the plot (resolution).

  • title (str) – Title of the plot.

  • legend_title (str) – Title of the legend of the plot.

  • meth (str) – The name of the AnalyzedStrategies property used to study the equilibria. Cf. Profile.

  • file_save_data (str) – File where the computed data will be saved (using pickle).

  • kwargs – Other keyword arguments are passed to the function TernaryAxesSubplotPoisson.heatmap_candidates().

Examples

>>> simplex_to_profile = SimplexToProfile(
...     ProfileNoisyDiscrete,
...     left_type=('abc', 0.5, 0.01), right_type=('bac', 0.5, 0.01), top_type=('cab', 0.5, 0.01))
>>> figure, tax = ternary_plot_winners_at_equilibrium(simplex_to_profile, scale=10)