我有一个数据文件(points.dat):
0.00 0.0
0.10 0.1
0.15 0.2
0.40 0.3
0.60 0.4
0.50 0.5
0.60 0.6
0.40 0.7
0.15 0.8
0.10 0.9
0.00 1.0
我运行gnuplot任务(使用tmp文件平滑x(y)数据):
#!/usr/bin/env gnuplot
set terminal png size 600,400
set output "data.png"
set table '.tmp'
plot 'points.dat' using 2:1 smooth csplines
unset table
plot '.tmp' using 2:1 with lines, 'points.dat' with points pt 7
我有两个传奇(关键)条目:
但我想合并两者:
我可以在视图窗口外绘制虚拟线点,但应该是正确的方法。
@Christoph评论
这不是“纯数学”,技术文档中有一些标准设计图。读取报告的人应该能够将标尺附加到图表并查看参数的近似值。
现在我选择“标题”来绘制标题和虚线:
plot 'tmp' using 2:1 with lines lt 6 notitle, \
'points.dat' with points lt 6 notitle, \
1E999 lt 6 with linespoints title "My Cool Title"
(很抱歉,如果声明混淆。这都是google翻译。)
答案 0 :(得分:1)
现在我的选择" notitle"绘图和虚线与标题:
plot 'tmp' using 2:1 with lines lt 6 notitle, \
'points.dat' with points lt 6 notitle, \
1E999 lt 6 with linespoints title "My Cool Title"