我想绘制2D散点图(x,y)
,点的颜色为value
(从0到1),并带有热点图例,
使用以下数据集:
x y value
3 2 0.1
2 1 0.2
...
我同时检查了Plotting a 2D heatmap with Matplotlib和Make a 2D pixel plot with matplotlib 但他们都不支持我在寻找什么。
答案 0 :(得分:2)
这没问题:
plt.scatter(x=x, y=y, c=value)
c
代表颜色/颜色图。