-
Notifications
You must be signed in to change notification settings - Fork 156
Open
Labels
Description
The following code does not produce labels for me. I get the plot, but without any labels.
scale, fontsize = 1, 12
import matplotlib.pyplot as pyplot
figure, ax = pyplot.subplots()
tax = ternary.TernaryAxesSubplot(ax=ax)
tax.set_title("Evolution of 6-6-3 signaler games under ambiguity", fontsize=fontsize)
tax.left_axis_label("Left label $\\alpha^2$", fontsize=fontsize)
tax.right_axis_label("Right label $\\beta^2$", fontsize=fontsize)
tax.bottom_axis_label("Bottom label $\\Gamma - \\Omega$", fontsize=fontsize)
tax.boundary(color="black", linewidth=2.0)
tax.gridlines(multiple=0.1, color="blue")
tax.plot( ((0.1,0.8,0.1),(0.8,0.1,0.1)) )
#tax.scatter( x, marker='s')
tax.legend()
tax.ticks(axis='lbr', color="black", linewidth=1, multiple=0.1)
tax.show()
wuyuyu1024