“Tambahkan colorbar matplotlib” Kode Jawaban

Tambahkan ColorBar ke gambar plot garis matplotlib

import matplotlib.pyplot as plt
sm = plt.cm.ScalarMappable(cmap=my_cmap, norm=plt.normalize(min=0, max=1))
plt.colorbar(sm)
Fantastic Ferret

Tambahkan colorbar matplotlib


import numpy as np
import matplotlib.pyplot as plt

data = np.arange(100, 0, -1).reshape(10, 10)

fig, ax = plt.subplots()
cax = fig.add_axes([0.27, 0.8, 0.5, 0.05])

im = ax.imshow(data, cmap='gist_earth')
fig.colorbar(im, cax=cax, orientation='horizontal')
plt.show()

Repulsive Reindeer

Tambahkan colorbar matplotlib

import matplotlib.pyplot as plt

plt.figure()
m = create_map()
plt.scatter(*positions[::-1],c=count_vec)
plt.colorbar()
plt.show()
Perro Fiel

Jawaban yang mirip dengan “Tambahkan colorbar matplotlib”

Pertanyaan yang mirip dengan “Tambahkan colorbar matplotlib”

Lebih banyak jawaban terkait untuk “Tambahkan colorbar matplotlib” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya