Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
1 vote
0 answers
84 views

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 ...
Martafix's user avatar
1 vote
0 answers
42 views

I want to plot a graph in JavaPlot with axis 'x' starting on higher numbers (and ending on lower). Just the equivalent of gnuplot's set xrange [10:0]. I've tried doing the same with JavaPlot p.getAxis(...
O. Vitek's user avatar
1 vote
0 answers
127 views

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 ...
lykowar's user avatar
  • 13
0 votes
1 answer
204 views

How can I reproduce these vertically stacked plots, available in gnuplot: set multiplot set size 1, 0.5 set origin 0.0,0.5 plot sin(x), log(x) set origin 0.0,0.0 plot sin(x), log(x), cos(x) unset ...
kabdulla's user avatar
  • 5,489
2 votes
1 answer
2k views

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 '-...
jfzr's user avatar
  • 405
-1 votes
2 answers
238 views

I have a file like 1429520881 15.0 1429520882 3.0 1429520883 340.0 and I try to use it in JavaPlot JavaPlot plot=new JavaPlot(); GenericDataSet dataset=new GenericDataSet(); filling dataset with ...
Vadim's user avatar
  • 47
1 vote
1 answer
465 views

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 ...
Vadim's user avatar
  • 47
1 vote
1 answer
148 views

I'm trying to use JavaPlot to automatically graph some data. Everything about the graph is being generated fine, but it is only using half the canvas. I can adjust the canvas size, and the graph will ...
Sam Beckmann's user avatar
1 vote
1 answer
504 views

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 ...
Ravby's user avatar
  • 53
5 votes
1 answer
2k views

I would like to shade a specific region in a polar plot using GNUPlot. This region is bounded by limits in R (r1, r2) and Theta (t1, t2), so the final shape is an annulus segment defined by only 4 ...
user4815162342's user avatar
1 vote
2 answers
303 views

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 ...
user4815162342's user avatar
0 votes
1 answer
926 views

I try to plot using JavaPlot a particular graph in a java project (I use eclipse). Now, I create the module for plotting as follow: public void createPlot(){ JavaPlot p = new JavaPlot(); p....
Fornax-A's user avatar
  • 1,032
0 votes
1 answer
255 views

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?
Pierre Lorentz's user avatar
0 votes
1 answer
274 views

I have a set of 6 points. Now I want to create a trend line (fifth-degree polynomial). I don't have much experience with GNUPlot, yet, but I found the "fit" method which should do exactly what I want. ...
John's user avatar
  • 985
1 vote
1 answer
154 views

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 ...
rorold's user avatar
  • 326
0 votes
1 answer
627 views

I want to compare time series data in just one graphic. I added several data sets to same plot and plot it - just one data set is shown. Documentation missing, existing questions useless.. Question: ...
user3208554's user avatar
0 votes
1 answer
263 views

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"); ...
zoma.saf's user avatar
  • 568
0 votes
1 answer
780 views

I am trying but not succeeding to replace numeric labels by string labels on a Plot2DPanel display. Here is a look of my chart using numeric X axis labels: Here is the code I use: // create your ...
kevad's user avatar
  • 419
5 votes
2 answers
2k views

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("...
Klausos Klausos's user avatar
1 vote
1 answer
563 views

I want to return to the old thing: JavaPlot and gnuplot I'm using windows 7 and I have the same problem, it means that my graph disappear immediately after the launching my simple test program: ...
Janusz's user avatar
  • 31
0 votes
1 answer
257 views

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 ...
whatyouhide's user avatar
  • 16.9k
0 votes
2 answers
787 views

I'm trying to display a spectogram using JavaPlot with this piece of code: PlotStyle style = new PlotStyle(); style.setStyle(Style.IMAGE); DataSetPlot data = new DataSetPlot(points); ...
aitorkun's user avatar
1 vote
2 answers
146 views

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() ...
Daniel's user avatar
  • 2,535
1 vote
2 answers
777 views

I'm trying to change the color of the points on my 3D Scatter Plot. The points change to black, not the color I want and the point on the key changes to the correct color. Does anyone know why this ...
Daniel's user avatar
  • 2,535
0 votes
1 answer
2k views

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 ...
Daniel's user avatar
  • 2,535
1 vote
2 answers
3k views

All of the information I'm finding about using JavaPlot is about how to create plots and run them from a Java code-level. This is fine, but I already have some script files used that do what I want ...
Andrew's user avatar
  • 117
1 vote
2 answers
3k views

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 ....
Tyler Durden's user avatar
3 votes
1 answer
3k views

The current code i use is: JavaPlot plotter = new JavaPlot(); plotter.setTitle("Title"); plotter.addPlot(data1); plotter.addPlot(data1); plotter.plot(); But I want to be able to set the labels in de ...
tgoossens's user avatar
  • 9,886
1 vote
2 answers
3k views

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?
rhombidodecahedron's user avatar