pyplot legends example python attributes matplotlib labels colorbar

legends - Matplotlib de Python reduce el tamaño de las etiquetas de la barra de colores



matplotlib title position (1)

Aha! Encontré la respuesta here :

cbar.ax.tick_params(labelsize=10)

PS Upvote that responden y le dan a Paul un poco de amor!

¡Necesito tu ayuda! Tengo un código de trazado que es el siguiente:

fig = plt.figure() ax1 = fig.add_subplot(111) imax1 = ax1.imshow(data,interpolation = ''nearest'', origin = ''lower'',cmap=cm.jet)#plot cbar = plt.colorbar(imax1, extend=''neither'', spacing=''proportional'', orientation=''vertical'', shrink=0.7, format="%.0f") cbar.set_label(r"ET [mm/month]", size=10) titlestr = "Evapotranspiration in mm/month" plt.title(titlestr) #plt.xlabel("Longitude") #plt.ylabel("Latitude") imax1.set_clim(0,60) labels = [item.get_text() for item in ax1.get_xticklabels()] for ii in range(np.shape(labels)[0]): labels[ii] = str(grid_lon[75*ii/np.shape(labels)[0]]) ax1.set_xticklabels(labels, rotation = 45, ha=''right'', size = 10) labels = [item.get_text() for item in ax1.get_yticklabels()] for ii in range(np.shape(labels)[0]): labels[ii] = str(grid_lat[75*ii/np.shape(labels)[0]]) ax1.set_yticklabels(labels, size = 10) pngname = "./out/2d_"+variable+"_"+mm+".png" print "save ", pngname plt.savefig(pngname, dpi=None, facecolor=''w'', edgecolor=''w'', orientation=''portrait'', papertype=None, format=None, transparent=False, bbox_inches=None, pad_inches=0.1) print "plot finished"

Me gustaría establecer el tamaño de la etiqueta de las etiquetas de la barra de colores (por ejemplo, 0,10,20, ... 60) a un tamaño de 10 o menor. Esto probablemente irá a la línea "imax1.set_clim (0,60). ¿Alguna idea? También me interesaría imprimir información del objeto imax1 en la línea de comando. ¿Cómo podría hacerlo? Por ejemplo, los atributos y funciones disponibles de imax1 .

¡Agradezco profundamente tu ayuda!