Plot 在PySAL中添加标题、轴名称

Plot 在PySAL中添加标题、轴名称,plot,title,axes,autocorrelation,pysal,Plot,Title,Axes,Autocorrelation,Pysal,我试图将标题和轴名称添加到Pysal中的局部自相关图中,但标题和轴不显示 from splot.esda import plot_local_autocorrelation ax.set_title("Florida cases", fontdict={'fontsize': '15', 'fontweight' : '3'}) plot_local_autocorrelation(moran_loc, gdf, 'Confirmedb') ax.set_xlabel('Co

我试图将标题和轴名称添加到Pysal中的局部自相关图中,但标题和轴不显示

from splot.esda import plot_local_autocorrelation
ax.set_title("Florida cases", fontdict={'fontsize': '15', 'fontweight' : '3'})
plot_local_autocorrelation(moran_loc, gdf, 'Confirmedb')
ax.set_xlabel('Covid-19 cases')
ax.set_ylabel('Spatial Lag of Covid-19 cases')
plt.show()