【发布时间】:2022-01-21 13:20:13
【问题描述】:
fig, ax = plt.subplots(1, figsize=(4, 4))
matplotlib.rcParams["figure.dpi"] = 250
ax.axis('off')
ax1 = geo_df1.plot(edgecolor='black', column=geo_df1.rel_grp, cmap=my_cmp, linewidth=0.3, ax=ax, categorical=True)#,
plt.show(ax1)
我想在东边添加一个放大的边框。像这样的东西。如何在 matplotlib 中做到这一点?
【问题讨论】:
标签: python matplotlib geometry geopandas