Is it possible to jitter scatter_mapbox?

HI,

I’m trying to create a scatter map in plotly express.

I’ve multiple points that have the same lat and on.

WHere are multiple points, only the first value is displayed.

Is it possible to jitter the points so that every point appears?

I’m thinking if there isn’t, that I could jitter the data in the dataframe using to achieve the same effect?

There’s no jittering feature at the moment, so you’ll have to jitter the data before plotting, or try a density heatmap: https://plotly.com/python/mapbox-density-heatmaps/

Thanks for the help.