Iโm trying to create a (very) large heatmap, where the data is of shape (10, 85000)
.
I Noticed that I canโt display heatmaps when the row size is greater than 65k
:
row_size = 65000 # change this to 66000 and the figure is displayed empty
z = np.random.randint(0, 101, size=(10, row_size))
heatmap = go.Heatmap(z=z,
colorbar=dict(
thickness=25,
))
fig = go.Figure(data=[heatmap])
fig.update_layout(width=1500, height=500)
fig.show()
Is there a way to increase this limit?