我想将此图中的小数位从3减少到1。我找不到任何方法可以做到这一点。我尝试将列表中的级别定义为整数,但要求使用浮点数,并且似乎自动将其保留为小数点后3位。救命。
fig = plt.figure(figsize=(10, 10))
ax = fig.add_subplot(1, 1, 1, aspect='equal')
plt.yticks(fontsize=16)
plt.xticks(fontsize=16)
modelmap = flopy.plot.ModelMap(model=mf)
quadmesh = modelmap.plot_ibound()
linecollection = modelmap.plot_grid(alpha=0.01)
#set up array to show wetland location
if alt_coords!=None: #plot the wetland if altcoords provided
wl_arr=np.zeros([mf.nrow,mf.ncol])
for coord in alt_coords:
wl_arr[coord[1],coord[2]]=1.0
quadmesh=modelmap.plot_array(wl_arr, color='w', alpha=0.1)
riv = modelmap.plot_bc('RIV', color='b', plotAll=True)
quadmesh = modelmap.plot_bc('WEL', kper=1, plotAll=True)
levels=np.arange(40, 100, 3)
contour_set = modelmap.contour_array(hds, levels, colors='b')
plt.clabel(contour_set, inline=1, fontsize=14)
最佳答案
matplotlib.pyplot.clabel接受fmt
参数。此arg允许您设置标签格式。因此,您可以指定此arg并查看其是否有效:plt.clabel(contour_set, inline=1, fmt='%1.1f, fontsize=14)
关于python - 如何减少Matplotlib等高线图中的小数位,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55846749/