我从温哥华犯罪的Kaggle那里取样。我已经安装了geopandas。 type(geo_df.loc[0,'geometry'])
是shapely.geometry.point.Point
这是我的最终代码。
fig,ax = plt.subplots(figsize=(15,15))
vancouver_map.plot(ax = ax,color='grey',alpha=0.4)
geo_df.plot(ax=ax, markersize = 20,color='red',marker ='o',label='Map')
我在做什么错?预先谢谢你