Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/opengl/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Gnuplot 在多点打印中设置唯一图例_Gnuplot - Fatal编程技术网

Gnuplot 在多点打印中设置唯一图例

Gnuplot 在多点打印中设置唯一图例,gnuplot,Gnuplot,我想有一个独特的传说,最好是在底部的多点。我尝试过在屏幕0,5和屏幕0.1上使用set键,但正如您所看到的,这并不理想。它非常接近X标签和值。我怎样才能把它在图表中再往下推一点呢 我有什么选择? 我的multiplot是用 set multiplot layout 2,2 rowsfirst offset 0, 0.001 set key at screen 0.58, screen 0.06 还有其他想法吗?另一种方法可能是指定整个多点图的外缘以及各个图之间的间距。这样,可以在(全局)底部

我想有一个独特的传说,最好是在底部的多点。我尝试过在屏幕0,5和屏幕0.1上使用
set键,但正如您所看到的,这并不理想。它非常接近X标签和值。我怎样才能把它在图表中再往下推一点呢

我有什么选择? 我的multiplot是用

set multiplot layout 2,2 rowsfirst offset 0, 0.001
set key at screen 0.58, screen 0.06

还有其他想法吗?

另一种方法可能是指定整个多点图的外缘以及各个图之间的间距。这样,可以在(全局)底部边距中为图例保留足够的空间:

set multiplot layout 2,2 rowsfirst \
    margins char 8,char 2,char 8,char 2 \
    spacing char 8,char 4

set key at screen 0.5, char 6

plot x w l t 'x', x*x w l t 'x*x'
plot x w l t ''
plot x w l t ''
plot x w l t ''
这个例子将产生: