I'm trying to use geoplot to draw a heatmap of crime distribution in San Francisco county. The problem is when I used the dataset from geoplot to draw the map of SF, the x,y axes do not appear. I'm using this map for my final presentation, so I figured it would be more readable for my audiences with axes displayed for them(longitude&latitude as axes). I've searched as many documents as I could, and I tried to use ax.axis('on') but didn't work. I would be much appreciate for any advice given. Thanks (BTW I'm doing this on jupyter) df is the data frame I used which contained 500k crime records with locations containing longitude & latitude.
gdf1 = gpd.GeoDataFrame(df, geometry=gpd.points_from_xy(df.Longitude, df.Latitude))
sf = gpd.read_file(gplt.datasets.get_path("san_francisco"))
count = gdf1
ax = gplt.polyplot(sf, projection=gcrs.AlbersEqualArea(),figsize=(10,10))
gplt.kdeplot(count, cmap="Reds", shade=True, clip=sf, ax=ax, cbar=True)