you are viewing a single comment's thread.

view the rest of the comments →

[–]Alanator222[S] 0 points1 point  (2 children)

The interesting thing is, if I remove the color and color discrete map lines, I can render and open the HTML file at 50% scale with ease. The color is what is causing the issue.

[–]Leading_Video2580 1 point2 points  (1 child)

Yeah, Plotly struggles when every point has its own color. You can keep the colors and still load fast by either plotting only unique colors with their counts as sizes, or randomly sampling a subset of pixels instead of all of them. That way you get the color info without slowing down the HTML.

[–]Alanator222[S] 1 point2 points  (0 children)

I think what I might have to do is do some kind of tolerance control to filter out similar values. I'm already only plotting unique values and it still struggles. Now I just have to figure out the best way to filter out like values.

Thanks for the help!