Tôi đang làm việc với dữ liệu có dữ liệu có 3 tham số biểu đồ: x, y, c. Làm cách nào để bạn tạo một giá trị màu tùy chỉnh cho một biểu đồ phân tán?
Mở rộng ví dụ này, tôi đang cố gắng thực hiện:
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()
nhưng kết quả là TypeError: You must first set_array for mappable
'AxesSubplot' object has no attribute 'colorbar'
. Tôi đã làm xongax.colorbar()
... tôi đang làm gì sai?