I already have a scatterplot (interactive) made with plotly, and I would like to add one dot, not necessarily interactive, in a specific coordinate (to mark the median). How can I add it?
fig = px.scatter(df_b,
x="EAD",
y="RAR",
size="Margen_bruto",
hover_name="Cliente",
hover_data={'EAD': ':.0f', 'RAR': ':.0%', 'Margen_bruto': ':.0f'},
size_max=30,
trendline='lowess',
trendline_color_override='black',
trendline_scope='overall',
title="BÉLGICA dic 2019 - 46 clientes")
I've already used functions like fig.add_annotation and fig.add_hline to add text and lines to my graph, but I can't seem to be able to add just one point.

