In gnuplot, how to plot with lines but skip missing data points?

20

2

I've got a value associated to each day, as such:

120530    70.1
120531    69.0
120601    69.2
120602    69.5
# and so on for 200 lines

When plotting this data in gnuplot with lines, the data points are nicely connected. Unfortunately, at places over a week of data points can be missing. Gnuplot draws long lines over these intervals. How can I make gnuplot only connect points on consecutive days?

Solutions that require preprocessing of the data are fine, as I already smooth it with a script.

Here is what I use:

set xdata time
set timefmt "%y%m%d"
plot "vikt_ma.txt" using 1:2 with lines title "first line", \\
     ""            using 1:3 with lines title "second line"

Example: gnuplot example

Anna

Posted 2012-06-24T15:00:25.473

Reputation: 243

Here is a picture of the problem: http://i.stack.imgur.com/aYH4N.png (can't add images to the post for some reason). I want the circled area to be left blank.

– Anna – 2012-06-24T15:05:28.663

Welcome to superuser. You can't because you just have not yet gathered enough reputation on this site. If you are unhappy with my changes you can of course revert them (or edit again). – Baarn – 2012-06-24T15:09:56.120

Answers

16

Put an empty record (blank line) where there is no data. From the docs:

Single blank records designate discontinuities in a plot; no line will join points separated by a blank records (if they are plotted with a line style).

Keith

Posted 2012-06-24T15:00:25.473

Reputation: 7 263

For me - it was a line with 2 space characters. – 3kstc – 2016-05-02T23:35:25.897

If you need to deal with a discontinuity in just one series, see @Roland W's answer. – Ben Aveling – 2020-01-25T12:51:37.003

1Thanks, this works for discontinuities in all series. What about if I have a discontinuity in one series, but not the other? – Anna – 2012-06-24T19:34:45.380

8It worked by putting dashes instead of the values. – Anna – 2012-06-24T20:28:41.117

10

You can use any string that is not a number as value for the missing data points or explicitly specify a missing data string using the set datafile missing command.

If you then plot the lines using

plot "vikt_ma.txt" using 1:($2) with lines title "first line"

then Gnuplot will leave a gap.

Roland W

Posted 2012-06-24T15:00:25.473

Reputation: 261

2

You can also do something like this to automatically create gaps when the distance between x values exceeds some threshold:

previous=1
current=1
shift(x) = (previous=current, current=x)
yornothing(x,y) = ( shift(x), abs(x-previous)<7200?y:sqrt(0/0))

plot "file.dat" using 1:(yornothing($1,$2)) with lines

You'll need to adjust the initial values of "previous" and "current", and the threshold ("7200" in the example above).

The function "yornothing" uses the function "shift" to store one previous value of x. Each time yornothing is called, it returns either the value of y or "0/0", depending on whether the absolute value of the difference between x and its previous value exceeds the threshold.

A value of 0/0 tells gnuplot to ignore that point.

Bryan Wright

Posted 2012-06-24T15:00:25.473

Reputation: 41