Linux中的Rgnuplot:没有出现情节窗口

时间:2014-05-23 05:55:31

标签: linux r plot gnuplot

我在Debian Stable Linux上的R版本2.15.1中安装了Rgnuplot。我在页面上给出的示例中运行了以下代码:https://github.com/cran/Rgnuplot/blob/master/demo/hello1.R

require(Rgnuplot)
#"Hello World!" - text on legend
#Initialize the gnuplot handle
h1<-gp.init()
#set output to a postscript file
#gp.cmd(h1,'set terminal postscript eps color;set output "helloworld1.eps"')
#label the x and y axis
gp.set.xlabel(h1, 'x')
gp.set.ylabel(h1, 'y')
#set plot style to "lines"
gp.setstyle(h1, 'lines')
#plot sin(x) and add a legend
gp.plot.equation(h1,'sin(x)','Hello World!')

但是没有出现情节窗口。我也尝试了其他例子但没有出现情节窗口。我怎么解决这个问题?谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

我发现没有安装gnuplot-x11。安装完成后,绘图窗口正确显示正确的图形。

对于Rgnuplot的开发人员:如果在未安装gnuplot-x11时显示错误/警告,将会很有帮助。目前,接受的命令没有任何错误/警告,但没有出现情节窗口,用户也不知道问题。