python-ternary
python-ternary copied to clipboard
:small_red_triangle: Ternary plotting library for python with matplotlib
Looking to save my ternary plot without a background so that I can eventually overlay it on a different ternary plot. I tried setting the background color to transparent, but...
This PR includes functionality for truncating the simplex i.e. cutting off one or more corners of the triangle to save whitespace. This has been recently mentioned in #192 and as...
In matplotlib, [there is a block argument](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.show.html) that dictates "whether to wait for all figures to be closed before returning." However, the `ternary/ternary_axes_subplot.py` wrapper [does not appear to allow for...
Added an option to all the relevant heatmap functions `adj_vlims` which will automatically scale the min and max values of the colormap used in the heatmap based on the min...
Hey Marc, Lovely library. I've used it to make some great heatmaps from a data dictionary. Just thought I'd file a bug report as the triangles don't quite match up...
 
Hi, First I wanted to say thank you for creating such a well documented and useful package. I am attempting to use the heatmap() function but my current output is...
## Description The `TernaryAxesSubplot.scatter()` method skips the first color of the default matplotlib colormap in version 1.0.8. ## Steps to reproduce ```python import ternary fig, tax = ternary.figure(scale=1) tax.scatter([(1.1/3, 0.9/3,...
I have a dictionary that looks like this (a truncated version): {(0.0, 100.0, 0.0): 0.09487584912554602, (0.0, 95.2381, 4.7619): 0.09786287021465875, (0.0, 90.47619999999999, 9.523810000000001): 0.10049247391912094, (0.0, 85.7143, 14.285700000000002): 0.10284007966168865, (0.0, 80.9524, 19.0476):...
Hello! First, thank you so much for making this package - it's so helpful! I am a geologist, and we often use ternary diagrams with the top cut off, such...