If I want to have two plotly express figures plotted on the same axis. What should I do.
I tried this:
fig = px.scatter_mapbox(points, lat="ycoord", lon="xcoord")
fig.add_trace(px.scatter_mapbox(stations, lat="ycoord", lon="xcoord",))
fig
But it is not working. I have two points dataset and want to see both on the same map.