“Échelle de journal Matplotlib MatShow” Réponses codées

Échelle de journal de l'axe matplotlib y

import pylab
import matplotlib.pyplot as plt
a = [pow(10, i) for i in range(10)]
fig = plt.figure()
ax = fig.add_subplot(2, 1, 1)

line, = ax.plot(a, color='blue', lw=2)

ax.set_yscale('log')

pylab.show()
Horrible Hippopotamus

Échelle de journal Matplotlib MatShow

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

Réponses similaires à “Échelle de journal Matplotlib MatShow”

Questions similaires à “Échelle de journal Matplotlib MatShow”

Plus de réponses similaires à “Échelle de journal Matplotlib MatShow” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code