I need to extract values of go.Box.
For example, median, q1, q3, upper and lower fences.
When using matplotlib.pyplot, I can extract them like:
B = plt.boxplot(data)
[item.get_ydata() for item in B[‘whiskers’]]
How could I do it with plotly?
I need to extract values of go.Box.
For example, median, q1, q3, upper and lower fences.
When using matplotlib.pyplot, I can extract them like:
B = plt.boxplot(data)
[item.get_ydata() for item in B[‘whiskers’]]
How could I do it with plotly?