python-ternary icon indicating copy to clipboard operation
python-ternary copied to clipboard

Contour Plots

Open marcharper opened this issue 9 years ago • 26 comments

Add contour plots, likely using Affine2D and matplotlib's built-in contour functions.

marcharper avatar Jun 04 '15 00:06 marcharper

Any progress on the contour plots? I am going to submit a publication that features python ternary soon, and some contour plots would be helpful. Should I just do this myself, or have you made progress?

btweinstein avatar Jan 11 '16 22:01 btweinstein

I've played with it -- so far I've tried to use mpl's transformations and contour functions. The main difference versus ternary's current API is how mpl expects the data (numpy matrices in a specific format), which is somewhat unusual for ternary data. This is the easiest way to add contour functionality, with the downside being a lack of control of how the contour plots are actually made (other than passing through standard mpl parameters). If that's good enough for your purposes I can try to patch it in sometime soon.

I've also played with passing through to mpl's heatmapping functions as well in a similar manner (so that heatmaps can also be generated from arbitrary data rather than specifying values on a partition as the library current expects).

marcharper avatar Jan 12 '16 02:01 marcharper

I am finding that a listed colormap with a small amount of colors works well enough. Don't worry about it! Thanks for the info though.

btweinstein avatar Jan 12 '16 23:01 btweinstein

@marcharper would you be so kind to share the code you mention to create a contour plot?

olivier-s-j avatar Oct 26 '16 19:10 olivier-s-j

I recommend just creating a listed colormap with a couple of colors, that creates nice looking contours. I can dig out the code if this reply is not sufficient

btweinstein avatar Oct 26 '16 20:10 btweinstein

Thx for the help. I've tired it with a discrete colormap but it does not give the result I am looking for. Code for contour lines would be helpful.

olivier-s-j avatar Oct 29 '16 14:10 olivier-s-j

@ojtwist Sorry for not responding to the request above. All I did back then was to project the data with ternary's functions and then use matplotlib's contour function. You could try something similar. I had issues getting the axes right.

Another approach would be to manually compute the contours and use ternary's curve plotting functions.

The "right" way to do this is using matplotlib's transformations (indeed the entire library could benefit), but that's a lot more work, and like @btweinstein I haven't personally encountered a situation where a contour plot would have been better than a heatmap.

marcharper avatar Dec 03 '16 02:12 marcharper

I haven't personally encountered a situation where a contour plot would have been better than a heatmap

For statistical inference, it's common to show the boundaries of credible regions, regions that contain a specified fraction of the probability in a ternary distribution. From a statistical perspective, what's interesting is the probability in a region, not the density. So from a statistical perspective, contours are very interesting. I think this would be a valuable addition.

tloredo avatar Feb 13 '18 17:02 tloredo

I'm sure there are useful scenarios for contour plots, but I don't have a personal need for them at the moment nor a lot of extra time to spend implementing this functionality. I'm happy to review and merge a PR that adds some or all of the functionality.

In the meantime, if you are able to compute the boundaries of the credible region(s) then you could easily plot them using tax.plot(). I would also guess that a heatmap would suffice to illustrate the credible regions.

marcharper avatar Feb 17 '18 17:02 marcharper

I wasn't really asking you to implement contours (though I was hopeful!), just making the point that there are well-motivated and not-uncommon use cases. I may look into this.

I would also guess that a heatmap would suffice to illustrate the credible regions.

My first reaction to that was no, a heatmap of the PDF (what is typically available) isn't readily useful for this. However, one could build a mapping from density to P(region with larger density) and plot a heatmap of that. It would essentially portray credible region boundaries for all choices of contained probability. I've never seen anyone do that, but it's an interesting idea that I'll try to look into.

tloredo avatar Feb 17 '18 18:02 tloredo

I was able to create "contours" by using a colormap with only a couple of colors, i.e. in the below image. It's not an ideal solution, but it may be helpful for you. pijk_and_deltap_plot

btweinstein avatar Feb 17 '18 18:02 btweinstein

Thanks; the same idea had occurred to me!

tloredo avatar Feb 18 '18 16:02 tloredo

@btweinstein Do you mind if I add that plot as an example to the readme?

marcharper avatar Apr 16 '18 03:04 marcharper

Of course, go ahead! Sorry for the slow reply

btweinstein avatar Apr 18 '18 22:04 btweinstein

I was able to create "contours" by using a colormap with only a couple of colors, i.e. in the below image. It's not an ideal solution, but it may be helpful for you. pijk_and_deltap_plot

Hi! is it possible to get the code for making this? I would much appreciate it. thanks!

samarthiith avatar Nov 28 '18 16:11 samarthiith

Firstly, brilliant bit of kit @marcharper.. I'm currently trying to generate a contour plot from a scatter plot. So I'm curious if @btweinstein might be able to share some of the code you used to create the contours? Would be really cool to generate that plot for the data I'm looking at. This is work in progress for a publication to get this out there. Any help would be much appreciated!

bsburnham avatar Mar 08 '19 17:03 bsburnham

Sure, all you have to do is use a colormap with less colors. Let me dig around from the code from my PhD and see if I can find where I created this...

btweinstein avatar Mar 10 '19 20:03 btweinstein

https://github.com/btweinstein/python-ternary/blob/master/ternary/colormapping.py

I have a function, colorbar_hack, that creates the colorbar next to the diagram. I think that's the best thing I can offer. You can google how to create a colormap with less colors

btweinstein avatar Mar 10 '19 20:03 btweinstein

@btweinstein Thanks very much for rooting around your old PhD stuff.. my PhD data is strewn about somewhere on a few HDD's, so kudos! I will give the colour mapping a go, I was hoping to show some sort of basic 'clustering' in the most basic sense by showing contours. Well see where I get!

Thanks again for your help!

bsburnham avatar Mar 12 '19 15:03 bsburnham

A hacky way to plot the actual contours for some points would be to use matplotlib's contour function to compute the contours (example here), transform the data from numpy arrays to the format ternary expects (lists of vectors), and then replot with tax.plot(), which should then project the points correctly.

marcharper avatar Mar 16 '19 15:03 marcharper

I recently needed to plot contours in a ternary plot as well. Thanks to the code linked by @marcharper, I created the following (semi minimal example) utilizing the matplotlib contour function to calculate contour lines from the shannon_entropy function from your examples.

Hope this helps all who had the same issue.

EDIT: Pull request: #147

ternary_contours_minimal

maximweb avatar Aug 13 '20 19:08 maximweb

Thanks @maximweb ! Feel free to open a PR to add this to the examples.

marcharper avatar Aug 13 '20 19:08 marcharper

My paper including ternary contours was finally accepted (PR for citation #176). Thanks to this nice project I created beautiful plots including contours based on the minimal example provided earlier #147. The result can be seen from the graphical abstract.

maximweb avatar Jul 30 '21 18:07 maximweb

Thanks for sharing your work @maximweb ! Looks great :)

marcharper avatar Aug 10 '21 12:08 marcharper

I'm in need of help in the contour plots,I just need to extract all the data points from the contour plot that I made.Can you please help me with this. IMG-20210903-WA0008.jpg

Mukilesh-K avatar Sep 15 '21 12:09 Mukilesh-K

@Mukilesh-K Is this a python-ternary related issue?

Maybe the procedure I suggested in my ternary contour example could help?

maximweb avatar Sep 28 '21 15:09 maximweb