Я працюю з даними, у яких дані мають 3 параметри побудови графіків: x, y, c. Як створити власне значення кольору для діаграми розсіювання?
Розширюючи цей приклад, який я намагаюся зробити:
import matplotlib
import matplotlib.pyplot as plt
cm = matplotlib.cm.get_cmap('RdYlBu')
colors=[cm(1.*i/20) for i in range(20)]
xy = range(20)
plt.subplot(111)
colorlist=[colors[x/2] for x in xy] #actually some other non-linear relationship
plt.scatter(xy, xy, c=colorlist, s=35, vmin=0, vmax=20)
plt.colorbar()
plt.show()
але результат є TypeError: You must first set_array for mappable
'AxesSubplot' object has no attribute 'colorbar'
. Я зробивax.colorbar()
... що я роблю не так?