“Fügen Sie Colorbar zu 2D Hist hinzu” Code-Antworten

Fügen Sie Colorbar zu 2D Hist hinzu


from matplotlib.colors import LogNorm
import matplotlib.pyplot as plt
import numpy as np

# normal distribution center at x=0 and y=5
x = np.random.randn(100000)
y = np.random.randn(100000) + 5

fig, ax = plt.subplots()
h = ax.hist2d(x, y, bins=40, norm=LogNorm())
fig.colorbar(h[3], ax=ax)

Yawning Yak

Fügen Sie Colorbar zu 2D Hist hinzu

fig, ax = plt.subplots()
h = ax.hist2d(x, y, bins=40, norm=LogNorm())
fig.colorbar(h[3], ax=ax)
Real Raccoon

Ähnliche Antworten wie “Fügen Sie Colorbar zu 2D Hist hinzu”

Fragen ähnlich wie “Fügen Sie Colorbar zu 2D Hist hinzu”

Weitere verwandte Antworten zu “Fügen Sie Colorbar zu 2D Hist hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen