我有以下gnu情节:
# automobile_input.txt
#
set term png
set output "automobile.png"
#
# Fields in each record are separated by commas.
#
set datafile separator ","
set title "Price versus Curb weight"
set xlabel "Price in dollars"
set ylabel "Curb weight in pounds"
set grid
plot 'x' using 1:2
quit
x是包含诸如
之类的数字的文件 1,2
0.5,4
等
我想对这个情节做一些改变。
在图的顶部有“x使用1:2”,我想删除它。
最后,最重要的是:我想以相同的格式添加另一个文件y,它也将绘制在同一个图上,只有不同的符号和颜色(而不是红色的加号),例如,蓝色三角形。我宁愿也是圈子。
答案 0 :(得分:4)
在绘图线中使用notitle
省略数据系列标题。添加另一条曲线将如下所示:
plot 'x' using 1:2 notitle, \
'y' using 1:2 notitle
数据系列点将自动调整。要手动指定格式,您可以使用以下内容进行绘图:
plot 'x' using 1:2 with points pointtype 6 linecolor rgb 'red' title "Data X", \
'y' using 1:2 with points pointtype 8 linecolor rgb 'blue' title "Data Y"
您通常会在线查看脚本,将这些命令缩写为:
plot 'x' w p pt 6 lc rgb 'red' title "Data X", \
'y' w p pt 8 lc rgb 'blue' title "Data Y"