“Tambahkan ColorBar ke 2D Hist” Kode Jawaban

Tambahkan ColorBar ke 2D Hist


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

Tambahkan ColorBar ke 2D Hist

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

Jawaban yang mirip dengan “Tambahkan ColorBar ke 2D Hist”

Pertanyaan yang mirip dengan “Tambahkan ColorBar ke 2D Hist”

Lebih banyak jawaban terkait untuk “Tambahkan ColorBar ke 2D Hist” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya