【发布时间】:2019-03-17 05:58:44
【问题描述】:
我正在尝试使用以下代码绘制带有标签的等高线图。
reset
set terminal qt
set pm3d map
set contour base
set cntrparam levels incremental 0, 10, 100
set cntrlabel onecolor
set palette rgbformulae 33,13,10
# No key appears
# splot 'temperature.dat' with pm3d title "Heated 2D plate"
# Key appears
splot 'temperature.dat' with pm3d, \
'temperature.dat' with labels title "Heated 2D plate"
输出如下所示:
我的问题:
- 为什么键没有出现在第一个 splot 命令中?
- 如何在使用标签绘图时去除点(第二个 splot 命令)?
如有需要,将附上数据文件。
【问题讨论】: