|
From: Hans-Bernhard B. <HBB...@t-...> - 2014-02-23 11:35:38
|
On 23.02.2014 02:30, Jon wrote:
> I know plot by default will not connect two points if they are separated by
> a blank line.
Your knowledge is incomplete, then. There's no "by default" involved.
If they're separated, they're separated.
> I wonder
> whether there is a way to force connecting nearby points even they are
> separated by blanks.
Strip out the separators before passing the data to gnuplot, or
on-the-fly, e.g.:
plot '< sed -e "/^$/d" input'
|