Relocating legend from GeoPandas plot
问题 I'm plotting a map with legends using the GeoPandas plotting function. When I plot, my legends appear in the upper right corner of the figure. Here is how it looks like: I wanted to move the legends to the lower part of the graph. I would normally would have done something like this for a normal matplotlib plot: fig, ax = plt.subplots(1, figsize=(4.5,10)) lima_bank_num.plot(ax=ax, column='quant_cuts', cmap='Blues', alpha=1, legend=True) ax.legend(loc='lower left') However, this modification