Hey guys, I would like the labels min, q1,q3 mean, max etc to appear on my box plot labels when not hovering on the graph. How would I be able to do this?
This is my code:
fig = go.Figure(data=[go.Box(y=1/(np.array(slopeP)),
boxpoints='all', # can also be outliers, or suspectedoutliers, or False
jitter=0.3, # add some jitter for a better separation between points
pointpos=-1.8 # relative position of points wrt box
)])
fig.update_layout(
title="Boxplot of parameters A",
xaxis_title="A",
yaxis_title="A Parameters")
fig.show()
and I would like it to look like the data in this image to stay on the graph without hovering on it.
Any tips would be helpful.
Changing the trace 0 name would also be great.