fig, tax = ternary.figure()
fig.set_size_inches(15, 15)
# Draw Boundary and Gridlines
tax.boundary(linewidth=1.5,zorder = 0) # outside triangle boundary width
tax.gridlines(multiple=0.2, zorder=0)
tax.gridlines(multiple=0.05, linewidth=0.5, zorder=0)
# Set Axis labels and Title
# if cut_in_half is True:
# axes=tax.get_axes()
# axes.set_ylim([-0.01, 0.434])
# # Remove default Matplotlib Axes
tax.clear_matplotlib_ticks()
tax.get_axes().axis("off")
tax._redraw_labels()
tax.scatter(
([[0.969150643, -0.272871785, 0.303721142
]]),
s=100,
edgecolor="k",
marker="^")
tax.scatter(
([[0.833424715, -0.042751855,0.20932714
]]),
s=100,
edgecolor="k",
marker="^",
facecolor='c')
tax.scatter(
([[0.643575998, 0.211712712, 0.14471129
]]),
s=100,
edgecolor="k",
marker="^",
facecolor='c')
tax.scatter(
([[0.869262776, -0.07564032, 0.206377544
]]),
s=100,
edgecolor="k",
marker="^",
facecolor='c')
tax.scatter(
([[0.965940875,-0.103004037, 0.137063162
]]),
s=100,
edgecolor="k",
marker="^",
facecolor='c')
axes=tax.get_axes()
axes.set_ylim([-0.3, 1])
fig.savefig('ChristyTest.png', dpi=200)