1
vote
3answers
102 views

Gnuplot: using custom point shapes, with legend entry

Gnuplot provides a number of point styles to use in scatter plots, such as a cross, a star, a square, a circle etc. The available point types can be demonstrated by using the test command. However, ...
0
votes
1answer
378 views

Gnuplot persist graph windows

I am using the following commands to draw a simple sin(x) plot on gnuplot , with a pipe from VS2010 C++ set terminal windows set title 'Graph of velocity versus time' set xrange[0:10] plot sin (x) ...
0
votes
1answer
268 views

gnuplot and c++ and pipes [closed]

I am pretty new to all of this. Here is my problem. I have the opening of a pipe to gnuolot from VS2010 c++ as per "FILE *p = _popen", this seems to work as I a graph appears eventually. I have an ...
0
votes
1answer
268 views

Gnuplot x tic labels overlap

I am drawing a gnuplot chart from datafile with such format: 01 value_1_1 value_2_1 02 value_1_1 value_2_1 ... 01 value_1_n value_2_n using that command: plot "action.dat" using 2:xtic(1) with ...
0
votes
1answer
281 views

Plotting horizontal lines across histogram bars

I have an experiment where I measured the performance of some algorithms relative to three baselines. I'd therefore like to plot histograms for the algorithms, with horizontal lines of various styles ...
1
vote
1answer
115 views

Does GNUPlot have WPF Support?

Have somebody worked with GNUPlots on WPF Plateform. Or what are the best options for Plotting in WPF. In my application, the plots will not be real time, and I need multiple y-axis and x-axis with ...
3
votes
2answers
575 views

gnuplot-like program for timeline data

I am looking for a gnuplot-like program for charting data in a timeline. gnuplot-like == Runs on Linux command line functionality (a GUI isn't going to help me much) scriptable syntax outputs to ...
0
votes
1answer
493 views

gnuplot: Is it possible to plot the (x, y) coordinate besides each point?

I found an answer here about using labels with the points but that only works for 1 column with the label, whereas in order to plot (x, y) along with the point I have to use 2. So I need something ...
6
votes
1answer
2k views

Gnuplot: 4d color plot using matrix format

I know that for a 4d color plot (3d surface, and the color is given by a 4th field), I can use a datafile of the format # X Y Z C 1 1 0 4 1 2 1 3 2 1 4 2 2 2 4 5 ... and then use set ...
2
votes
1answer
678 views

gnuplot 2d plot to 3d fence plot

i have a plot looking like this: However the lines are overlapping quite a lot and i'm not able to see as much as i'd like. My gnuplot script looks like this: set autoscale set term ...
1
vote
1answer
248 views

Is there a way to plot change of day on an hourly timescale on the x axis?

I'm using gnuplot to plot time-dependent data. The samples are taken every 5 minutes or so and I have 200 samples. I plot these with the x axis formatted to set format x "%H:%M" Ideally, I'd like ...
18
votes
3answers
23k views

How do you plot bar charts in gnuplot?

How do you plot bar charts in gnuplot with text labels? (Sorry - I'm answering my own question here - as it suggest in the first entry of the faq)