Scatter plot with third variable as color | Python Matplotlib

Publicado el: 03 marzo 2021
en el canal de: Karina Adcock
38,174
620

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()


En esta página del sitio puede ver el video en línea Scatter plot with third variable as color | Python Matplotlib de Duración hora minuto segunda en buena calidad , que subió el usuario Karina Adcock 03 marzo 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 38,174 veces y le gustó 620 a los espectadores. Disfruta viendo!