I have one dataset with polygons geometry and another with points, I want to plot both in the same graphic with geopandas.explore function but I get the error 'Map' object has no attribute 'set_aspect'
The code is:
import geopandas as gpd
import matplotlib.pyplot as plt
f, ax= plt.subplots(1, figsize=(12,5))
Polygons= df.explore('column', scheme='Quantiles', cmap= 'GnBu', k=6)
points= df_points.plot(ax= Polygons)
plt.show()```
