Hello, i have a dataet with a set of long and lat, and there are roughly 300k datapoints, my goal is to create a sensible depiction of point distribution across the united states. It looks horrible, is there a way to maybe get density or a sum of points?. I tried the following
ggplot() +
geom_polygon(data=map_data("usa"),aes(x=long,y=lat,group=group),fill=NA,color="black") +
geom_point(data=h1b,aes(x=h1b$lon,y=h1b$lat),color="yellow",size=1)
its from this dataset: