tags:

views:

7

answers:

0

I am using gnujavaplot. In gnuplot, I would type

plot "data" with lines

In gnujavaplot, I have

JavaPlot p = new JavaPlot();
p.addPlot(data);
p.plot();

Any idea how to get the lines?