“Escala logarítmica de matplotlib” Respostas de código

Escala logarítmica de matplotlib

fig, axs = plt.subplots()
#on x asix
ax.set_xscale('log')
#on y asix
ax.set_yscale('log')
Intempestive Al Dente

escala de log de mathow matplotlib

from pylab import figure, cm
from matplotlib.colors import LogNorm

# C = some matrix
f = figure(figsize=(6.2, 5.6))
ax = f.add_axes([0.17, 0.02, 0.72, 0.79])
axcolor = f.add_axes([0.90, 0.02, 0.03, 0.79])

im = ax.matshow(C, cmap=cm.gray_r, norm=LogNorm(vmin=0.01, vmax=1))

t = [0.01, 0.1, 0.2, 0.4, 0.6, 0.8, 1.0]
f.colorbar(im, cax=axcolor, ticks=t, format="$%.2f$")

f.show()
bougui

Respostas semelhantes a “Escala logarítmica de matplotlib”

Perguntas semelhantes a “Escala logarítmica de matplotlib”

Mais respostas relacionadas para “Escala logarítmica de matplotlib” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código