我正在使用简单的方案从我的数据绘制2D热图,如下所示:
set pm3d map
set pm3d interpolation 5,5
splot "file"
现在我需要在这些数据上标记几个点,可能是白色。我试着这样做:
splot "file"; plot "points"
并且它不起作用并写道:“不能将pm3d用于2d图”。
答案 0 :(得分:3)
该文件是什么样的?你可以这样做:
splot 'file' with pm3d, 'points' with points linecolor rgb "white"
取决于'points'
的外观,您可能需要添加使用规范:
splot 'file' with pm3d, 'points' using 1:2:(0.0) with points linecolor rgb "white"