-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contour Plots #5
Comments
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? |
I've played with it -- so far I've tried to use mpl's transformations and contour functions. The main difference versus 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). |
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. |
@marcharper would you be so kind to share the code you mention to create a contour plot? |
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 |
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. |
@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. |
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. |
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 |
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.
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. |
Thanks; the same idea had occurred to me! |
@btweinstein Do you mind if I add that plot as an example to the readme? |
Of course, go ahead! Sorry for the slow reply |
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! |
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... |
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 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! |
A hacky way to plot the actual contours for some points would be to use |
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 Hope this helps all who had the same issue. EDIT: Pull request: #147 |
Thanks @maximweb ! Feel free to open a PR to add this to the examples. |
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. |
Thanks for sharing your work @maximweb ! Looks great :) |
@Mukilesh-K Maybe the procedure I suggested in my ternary contour example could help? |
Add contour plots, likely using Affine2D and matplotlib's built-in contour functions.
The text was updated successfully, but these errors were encountered: