How to make and customize a color map and color bar in python
Choosing Colormaps in Matplotlib:
https://matplotlib.org/3.1.0/tutorial...
-------------------------------------------------------------------------------------------------------------------
import matplotlib.pyplot as plt
x = [1,2,3,4,5,6,7,8,9,10,11]
y = [1,1,1,1,1,1,1,1,1,1,1]
colors = [1,2,3,4,5,6,7,8,9,10,100]
plt.scatter(x,y, s=200, c=colors, cmap=plt.cm.get_cmap("cool",5))
cbar = plt.colorbar(orientation="vertical", extend="both",
pad=0.05, shrink=1, aspect=20, format="%.3f")
cbar.set_label(label="Concentrations", size=15)
cbar.set_ticks([0,5,10])
cbar.set_ticklabels(["0 grams","5 million","cats"])
cbar.ax.tick_params(labelsize=15)
plt.clim(0,10)
plt.cm.[TAB]
plt.show()
Sur cette page du site, vous pouvez voir la vidéo en ligne Scatter plot with third variable as color | Python Matplotlib durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Karina Adcock 03 mars 2021, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 38,174 fois et il a aimé 620 téléspectateurs. Bon visionnage!