Histogram2dContours

Is it possible to extract coordinates of contours generated by go.Histogram2dContours?

HI @jlw welcome to the forums.

I did not find a way to do so. Reading this statement from the help- sites is somehow points into the same direction. But maybe I am mistaken.

Accessing the counts (y-axis) values

JavaScript calculates the y-axis (count) values on the fly in the browser, so it’s not accessible in the fig. You can manually calculate it using np.histogram.

Thanks for the response.