How to make and customize a color map and color bar in python
Choosing Colormaps in Matplotlib:
[ Ссылка ]
-------------------------------------------------------------------------------------------------------------------
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()
Scatter plot with third variable as color | Python Matplotlib
Теги
scatter plot with third variable as colorscatter plot color based on valuecolour representing a third variablescatter plot color scalepython plot with different colorspython scatter plotsmatplotlib scatter plotmatplotlib pythonpython plot color as valueplot color as variablepython matplotlib colorbarscatter plot colorbarcolormaps in matplotlibpython plot coloursdraw scatter plots with 3 variablespython add a third variable with color