-
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
Heatmap scale greater than 1 vs less than equal to 1 #191
Comments
The existing |
Is there some way that we can at least rescale the axes/axis ticks to go from 0 to 1 while also getting heatmapf to work? |
Approach-1: Update the source code as mentioned in #191 (comment) .
|
Thanks for the tip on adjusting the ticks. I also found another alternative: use plt.tripcolors with a rescaled version of the points (derived from simplex_iterator) on tax.ax (where tax has scale 1). |
I wanted to draw a heatmap with scale 1.
But as the hexagonal tile corners in the function 'generate_hexagon_deltas()' are fixed by factor of 1, the heatmap drawing was not as expected. So, I updated 2 of the functions as below:
Now things are better. Any comments or alternative suggestions?
The text was updated successfully, but these errors were encountered: