gpt4 book ai didi

gnuplot - gnuplot-删除行标题

转载 作者:行者123 更新时间:2023-12-03 10:56:03 27 4
gpt4 key购买 nike

我尝试搜索,但是找不到针对此特定条件的解决方案。在我的情节中,我正在比较两条痕迹。我正在使用折线图,并且两条迹线都以不同的颜色绘制。

plot "delay_try1.dat" using 1:2 title 'With CloneScale' with lines, \
"normal_2.dat" using 1:2 title "Without CloneScale" with lines lc rgb "black", \
"normal2.dat" using 1:2 title 'Without CloneScale' with lines lc rgb "black"

使用此plot命令,我得到3个图例标题和2个重复标题。我只希望出现2个标题并删除重复的标题。是否有可能做到这一点?

最佳答案

为此,您应该使用notitle标记。

plot "delay_try1.dat" using 1:2 title 'With CloneScale' with lines, "normal_2.dat" using 1:2 title "Without CloneScale" with lines lc rgb "black", "normal2.dat" using 1:2 with lines lc rgb "black" notitle

或更一般的例子;
plot 'File.dat' using 1:2 notitle

等效于 notitle的替代方法是将 title设置为零字符串。
plot 'File.dat' using 1:2 title ""

关于gnuplot - gnuplot-删除行标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8618487/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com