Gnuplot 4.6.5 ylabel不可见

时间:2014-09-04 01:26:40

标签: gnuplot

我在ubuntu 12.04上运行gnuplot 4.6.5并使用x11终端。我使用如下脚本但是ylabel不可见(xlabel很好)。我需要做些什么来解决它?偏移? 谢谢你的帮助

 plot "512bytesCBR3000client4server1numofnodes.txt" using 1:2 title 'NativeOF' with     linespoints lw 2 ps 3 pt 6 lt 3
 set grid
 set ylabel "End to end delay"
 set xlabel "number of nodes"

2 个答案:

答案 0 :(得分:2)

通常情况下,您必须先进行所有设置(set xlabelset ylabelset grid),然后再致电plot,如果您希望它们出现在情节中。我不确定为什么set xlabel为你工作,除非你在之前的情节中设置它或者从gnuplot命令行尝试命令时。

尝试将plot命令移动到文件末尾。

答案 1 :(得分:0)

有时,这可能与画布的边缘有关。因此,使用边距设置可能是明智的选择,例如:

# other grid settings
set lmargin 10                                                               
set rmargin 10                                                               
set tmargin 5                                                            
set bmargin 5
# plot command