ternary_plot_n_equilibria
- poisson_approval.ternary_plot_n_equilibria(simplex_to_profile, scale, title='Number of equilibria', meth='analyzed_strategies_ordinal', **kwargs)[source]
Shortcut: ternary plot for the number of equilibria.
- 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.
meth (str) – The name of the
AnalyzedStrategies
property used to count the equilibria. Cf.Profile
.kwargs – Other keyword arguments are passed to the function
TernaryAxesSubplotPoisson.heatmap_intensity()
.
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_n_equilibria(simplex_to_profile, scale=10)