I'm using python to plot a fish population in a certain area and my lat/long coordinates indicate every trawl while recording where the species is/isn't. I want to plot all of my coordinates where the species is by excluding the coordinates where the abundance of the species is zero. Any ideas?
This is my script right now. I expected it to show all of the coordinates which it does but I dont know how to exclude the zeroes.
dt = pd.read_csv(data)
fig = px.scatter_geo(dt,lat='Lat',lon='Lon', hover_name="Abundance")
fig.update_layout(title = 'World Map: plot fish and hover to see abundance', title_x=0.5)
fig.show()