“Fügen Sie Colorbar Matplotlib hinzu” Code-Antworten

Fügen Sie Colorbar hinzu, um Matplotlib -Liniendiagramme zu finden

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

Fügen Sie Colorbar Matplotlib hinzu


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

Fügen Sie Colorbar Matplotlib hinzu

import matplotlib.pyplot as plt

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

Ähnliche Antworten wie “Fügen Sie Colorbar Matplotlib hinzu”

Fragen ähnlich wie “Fügen Sie Colorbar Matplotlib hinzu”

Weitere verwandte Antworten zu “Fügen Sie Colorbar Matplotlib hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen