zmin and zmax ignored in Heatmaps
See original GitHub issueimport numpy as np
import plotly.plotly as py
from plotly.graph_objs import Heatmap,Data
data = np.arange(10000).reshape(100,100)
trace = Heatmap(z=np.flipud(data), zmin=1000, zmax=2000)
py.iplot(Data([trace]))
Using version 1.6.6 on Python 3 (miniconda, all updates), IPython 3.0.0dev
Issue Analytics
- State:
- Created 9 years ago
- Comments:10 (2 by maintainers)
Top Results From Across the Web
plotly.graph_objects.Heatmap — 5.11.0 documentation
zauto – Determines whether or not the color domain is computed with respect to the input data (here in z ) or the...
Read more >Zmin and zmax settings in the heatmap chart - Feature Requests
Hello everyone, we used Redash for a while and it rocks! In our use case we use a lot of heatmap charts and...
Read more >Colorbar doesn't respect limit values - Stack Overflow
It appears that when using contours.coloring='fill' (which is the default) the zmin and zmax are ignored (for some reason).
Read more >Python Figure Reference: heatmap Traces - Plotly
Determines whether or not the color domain is computed with respect to the input data (here in `z`) or the bounds set in...
Read more >plotCorrelation — deepTools 3.0.2 documentation
--zMin, -min, Minimum value for the heatmap intensities. If not specified, the value is set automatically. --zMax, -max, Maximum value for the heatmap...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
if i set zmin/zmax, isn’t it obvious that I don’t want zauto?
2021 and still not resolved, not even in the documentation. What is the right place to request that feature or to make a pull request?