29 questions
1
vote
0
answers
81
views
How do I pass specific commands to gnuplot while using JavaPlot
I'm making a Java app, that uses gnuplot. I've already successfuly displayed a graph in JPanel (using JPlot). But I need to get somehow access to commands that JavaPlot gives to gnuplot, or rather I ...
1
vote
0
answers
124
views
How to increase size of graph Javaplot
I'm new to Javaplot and I'm using it to generate several graphs of some processes to determine their efficiency.
I've made my way around to be able to create several graphs in a page but they are ...
2
votes
1
answer
2k
views
Gnuplot: plot 2D graph with variable points sizes and colors
I have been trying to plot scatter data with points where the size and colors depend on the input. I have check some others examples and I get to write this, but then I get that error message
plot '-...
1
vote
1
answer
465
views
gnuplot timestamp format from double number (13dig. epoch)
I have a file with strings
1.429520882432E12 3432.0
1.429520882914E12 1573.0
...
first col is epoch timestamp(13 digit), how could I get time from it? I couldnt find format for 'double' digits
I ...
1
vote
1
answer
504
views
How to save svg or esp file in JavaPlot
I tried the code for saving png files found here and it works.
But I want to save a vector image, so I changed the terminal to: PostscriptTerminal and SVGTerminal. For the SVGTerminal the output in ...
1
vote
2
answers
303
views
Create Polar plot in JavaPlot
I'm having trouble passing GNUplot parameters through JavaPlot. I've been able to use JavaPlot for several different graphs, but I can't seem to get JavaPlot to activate the "polar" setting in ...
0
votes
1
answer
255
views
JavaPlot: Is there anyway to replot the data in the same plot instead of creating a new graphic?
I was trying to monitor the change of some parameters using JavaPlot.
Is there a way to simply update the plot of data in the original plot?
1
vote
1
answer
149
views
Is there a non-blocking equivalent to JavaPlot.plot()?
I'm using JavaPlot in windows 7 to plot multiple datasets in Java, and I've found that the plot() method contains a section that waits for the GNUPlot process to end.
What this means in practice is ...
0
votes
1
answer
262
views
gnuplot 4.7 and Javaplot | The windows is disappeared immediately
I'm trying to see my plot using Javaplot, but the window is not even shown and disappeared immediately.
Here is my code:
JavaPlot p = new JavaPlot("C:/Program Files (x86)/gnuplot/bin/pgnuplot.exe");
...
5
votes
2
answers
2k
views
GNUPlot disappears immediately after its creation
I have created the gnuplot, but the problem is that it disappears immediately. I tried different solutions proposed in other threads, but none of them worked. Solution 1: comment the line bf.append("...
0
votes
1
answer
255
views
Java - JavaPlot under Mac OS X 10.8 - Could I somehow avoid installing gnuplot?
If you don't know JavaPlot, it's a Java library which 'connects' Java with the popular gnuplot providing a set of classes. When it runs, it searches for the gnuplot binary in your system. Anyway, some ...
1
vote
2
answers
145
views
Repercussions of trying to kill a program before closing OutputStreamWriter
This is part of larger graphing program (JavaPlot specifically). In a nut shell, I would try to graph something; the graph would appear at
out.write(comms);
but then close once it hit
out.close()
...
0
votes
1
answer
2k
views
Using JavaPlot/Gnuplot for 3D graphing
I'm trying to do what the title says. Obviously gnuplot is capable of doing this but I want to use JavaPlot to call it. The Graph3D class in JavaPlot makes me think its possible but as I have found no ...
1
vote
2
answers
3k
views
Incorporating gnu javaplot in application
I am having a few issues setting up javaplot into my application.
I have downloaded the source files from: http://sourceforge.net/projects/gnujavaplot/files/latest/download
and i have dragged the ....
1
vote
2
answers
3k
views
"With lines" in JavaPlot?
I am using JavaPlot. In gnuplot, I would type
plot "data" with lines
In JavaPlot, I have
JavaPlot p = new JavaPlot();
p.addPlot(data);
p.plot();
Any idea how to get the lines?