0
votes
1answer
44 views

How to get the average number of data points?

Here is my data file : 12100 4592 14400 5000 16900 6443 12100 4479 14400 5393 16900 5969 12100 4605 14400 5353 16900 6268 I would like to have the ...
0
votes
1answer
40 views

Gnuplot: Plot line with labels

Having a plot with several traces. I want to plot one trace with labels. plot "-" ls 3 notitle ,\ "-" ls 4 title "Trace 1", \ "-" ls 5 title "Trace 2" ,\ "-" with points ls 6 notitle ...
0
votes
1answer
121 views

Gnuplot: Plotting data from two files after performing mathematical operation between them

I have FileSFC1: contains certain data FileSFC2: contains some other data Now what I need to do is divide the second column of FileSFC1 with the second column of FileSFC2 and then plot this result. ...
1
vote
2answers
263 views

gnuplot plot labelled data

I am new to gnuplot and am having trouble finding the meaning of some of the commands. I want to plot a csv file where the rows are data points and the three columns represent the data label, x value ...
1
vote
1answer
283 views

Reading external data files in gnuplot

Well, this is a continuation of my previous question. As, I mentioned, the data files are produced from a Fortran code. All the data files contain two columns of data. In the Fortran code I use the ...
0
votes
1answer
32 views

Combine multiple data files in a single plot

I have several data files produced from a Fortran code. All the data files are following the same style regarding their names, that is: data###.out, where ### starts from 001 and ends to 500. I know ...
1
vote
1answer
51 views

Gnuplot: How can I get the data values from a function?

I have a question, how can I get the data values from a function in gnuplot?. For example I do plot [0:pi] sin(x) but I want to get the data values from this plot, how can I do that?. Thanks in ...
1
vote
1answer
200 views

Dynamic Gnuplot graphs

I have a continuously updating data file. I wanna use Gnuplot to dynamically plot the updating data file, possibly using a window of the last 100 data points. Is it possible? If so, some pointers are ...
1
vote
1answer
426 views

Gnuplot - data points in script

I have C++ program that now generates two files: - data file (with columns of data) - gnuplot script (to set ranges and labels properly) So, for plot I need to have two files which are related to each ...
0
votes
1answer
192 views

Gnuplot: plot only (x,y) points with a specified z value

I have x,y,z data in 3 columns like this: 1 2 1 2 4 1 3 3 1 4 4 2 5 8 2 6 6 2 Say I only wanted to plot just (x,y) values where z=2 (i.e, just last 3 rows). How do I do that within ...
0
votes
1answer
107 views

gnuplot data dgrid3d changes circle to square

I have unstructured data in my file, thats really long. I want to create a coloured pm3d graph. from what I understand, i have to interpolate the data with set dgrid3d. However if I do that, my data ...
0
votes
1answer
190 views

Gnuplot: How to concatenate a datafile with four columns

My data file has four columns because opencv saves elements in an n x 4 form in xml when exporting a cv::Mat to xml. How can I concatenate these four columns into one? reset set terminal postscript ...
1
vote
1answer
3k views

Need to plot every n'th row in gnuplot

I am using gnuplot and have som data that have more than 2 parameters. I dont want to use 3D graphs. So I will split the data up in several lines in the same plot. My data looks like this, in one ...
0
votes
2answers
308 views

Reusing inline data in gnuplot

Does anyone know how I can reuse inline data in Gnuplot, i've been googling it and can't find nothing everything suggests to input the data gain? Basically reuse the '-' file.
1
vote
2answers
637 views

can one define functions which operate on input data (Gnuplot)

everyone. I wonder if there is some workaround in Gnuplot to exchange something like plot input.dat using ($1/2):($2*2) axis x1y1 w lp with plot input.dat using func1($1,$2):func2($1,$2) axis ...
0
votes
1answer
388 views

Errors in Gnuplot PDF output

I'm trying to plot data with Gnuplot where all data values are positive. However, when plotting to PDF some of the output values appear negative under the x-axis: http://tinypic.com/r/14iztbs/7 This ...
0
votes
2answers
314 views

Reading 3-dimensional datasets into R

Gnuplot allows for three dimensional datasets, which are a set of tables separated by empty lines, for instance: 54.32,16.17,7.42,4.28,3.09,2.11,1.66,1.22,0.99,0.82,7.9 ...