这是我的代码:
set title "courbe"
set xlabel "first"
set ylabel "second"
set y2label "third"
plot "File.txt" using 1:2 with linespoints tit 'first', "File.txt" using 1:3 with linespoints tit 'second', "File.txt" using 1:4 with points tit 'third'
拜托,第三把斧头没有在斧头上显示数字..你有什么想法吗?
谢谢。
答案 0 :(得分:0)
我怀疑这是用于生成该绘图的实际脚本,因为第二个绘图命令的标题不匹配。除此之外,你实际上并没有在y2轴上绘制任何东西。要在y2轴上放置某些内容,您需要明确指定(例如axes x1y2
)。类似的东西:
set title "courbe"
set xlabel "first"
set ylabel "second"
set y2label "third"
plot "File.txt" using 1:2 with linespoints title 'first',\
"File.txt" using 1:3 with linespoints title 'second', \
"File.txt" axes x1y2 using 1:4 with points title 'third'
应该做的伎俩。