Vegas("A scatterplot").
withDataFrame(neuronnet_activation_df).
mark(Point).
encodeX("s", Quantitative).
encodeY("d", Quantitative).
encodeColor(field="feature_0_prediction",scale=Scale(rangeNominals=List("#c41f01", "#00c610"))).
show
是否可以用特定的 RGB 或 aRGB 值绘制每个点?我已经计算了颜色,所以我不需要使用范围,而且颜色范围对于我的数据也不是线性的。