mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-05 22:11:12 +08:00
Compare commits
11 Commits
debian/1.6
...
master
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d57634bcf9 | ||
![]() |
6340dd3582 | ||
![]() |
2d8344f32d | ||
![]() |
2db7f980b5 | ||
![]() |
96ac271cda | ||
![]() |
db4fdcb933 | ||
![]() |
fce128aa14 | ||
![]() |
8c0f3df285 | ||
![]() |
c99b377083 | ||
![]() |
ed99cd89d1 | ||
![]() |
4817a53d21 |
21
Changes
21
Changes
@ -1,3 +1,24 @@
|
||||
feedgnuplot (1.62)
|
||||
|
||||
* I explicitly ignore all lines that have '-' values
|
||||
These may come from vnl-filter -p "dx=diff(x)" ... output. For instance, this
|
||||
plot is broken before this patch:
|
||||
|
||||
(echo '# x'; seq 5) | vnl-filter --noskipempty -p 'd=diff(x)' \
|
||||
| feedgnuplot --lines
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sat, 27 Jan 2024 17:01:18 -0800
|
||||
|
||||
feedgnuplot (1.61)
|
||||
|
||||
* #! line uses /usr/bin/env to work with nonstandard installations
|
||||
* Added --cblabel to label the color bar
|
||||
* Added --cbmin, --cbmax
|
||||
* --zmin,--zmax,--zlabel are always sent, if requested
|
||||
* Plotting with no STDIN data works
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Fri, 04 Mar 2022 14:45:36 -0800
|
||||
|
||||
feedgnuplot (1.60)
|
||||
|
||||
* Test suite fix: we have the right number of tests
|
||||
|
90
README.pod
90
README.pod
@ -21,56 +21,36 @@ Simple plotting of piped data:
|
||||
10 25
|
||||
|
||||
$ seq 5 | awk '{print 2*$1, $1*$1}' |
|
||||
feedgnuplot --lines --points --legend 0 "data 0" --title "Test plot" --y2 1
|
||||
--unset grid --terminal 'dumb 80,40' --exit
|
||||
feedgnuplot \
|
||||
--lines \
|
||||
--points \
|
||||
--title "Test plot" \
|
||||
--y2 1 \
|
||||
--unset key \
|
||||
--unset grid
|
||||
|
||||
Test plot
|
||||
|
||||
10 +-----------------------------------------------------------------+ 25
|
||||
| + + + + + + + *##|
|
||||
| data 0 ***A*#* |
|
||||
| ** # |
|
||||
9 |-+ ** ## |
|
||||
| ** # |
|
||||
| ** # |
|
||||
| ** ## +-| 20
|
||||
8 |-+ A # |
|
||||
| ** # |
|
||||
| ** ## |
|
||||
| ** # |
|
||||
| ** B |
|
||||
7 |-+ ** ## |
|
||||
| ** ## +-| 15
|
||||
| ** # |
|
||||
| ** ## |
|
||||
6 |-+ *A ## |
|
||||
| ** ## |
|
||||
| ** # |
|
||||
| ** ## +-| 10
|
||||
5 |-+ ** ## |
|
||||
| ** #B |
|
||||
| ** ## |
|
||||
| ** ## |
|
||||
4 |-+ A ### |
|
||||
| ** ## |
|
||||
| ** ## +-| 5
|
||||
| ** ## |
|
||||
| ** ##B# |
|
||||
3 |-+ ** #### |
|
||||
| **#### |
|
||||
| #### |
|
||||
|## + + + + + + + |
|
||||
2 +-----------------------------------------------------------------+ 0
|
||||
1 1.5 2 2.5 3 3.5 4 4.5 5
|
||||
|
||||
Here we asked for ASCII plotting, which is useful for documentation.
|
||||
=for html <p><img src="documentation-header-plot.svg">
|
||||
|
||||
Simple real-time plotting example: plot how much data is received on the wlan0
|
||||
network interface in bytes/second (uses bash, awk and Linux):
|
||||
network interface in bytes/second. This plot updates at 1Hz, and shows the last
|
||||
10sec of history. The plot shown here is the final state of a sample run
|
||||
|
||||
$ while true; do sleep 1; cat /proc/net/dev; done |
|
||||
gawk '/wlan0/ {if(b) {print $2-b; fflush()} b=$2}' |
|
||||
feedgnuplot --lines --stream --xlen 10 --ylabel 'Bytes/sec' --xlabel seconds
|
||||
$ while true; do
|
||||
sleep 1;
|
||||
cat /proc/net/dev;
|
||||
done \
|
||||
| gawk '/wlan0/ {if(b) {print $2-b; N++; fflush()} b=$2} N==15 {exit}' \
|
||||
| feedgnuplot \
|
||||
--lines \
|
||||
--title "wlan0 throughput" \
|
||||
--stream \
|
||||
--xlen 10 \
|
||||
--ylabel 'Bytes/sec' \
|
||||
--xlabel seconds \
|
||||
--unset key \
|
||||
--unset grid
|
||||
|
||||
=for html <p><img src="documentation-header-network-throughput-plot.svg">
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
@ -533,9 +513,16 @@ Interpret the X data as a time/date, parsed with the given format
|
||||
|
||||
C<--colormap>
|
||||
|
||||
Show a colormapped xy plot. Requires extra data for the color. zmin/zmax can be
|
||||
used to set the extents of the colors. Automatically sets the
|
||||
C<--rangesize>/C<--tuplesize>.
|
||||
This is a legacy option used to who a colormapped xy plot. It does:
|
||||
|
||||
- Adds C<palette> to C<--curvestyleall>
|
||||
|
||||
- Adds 1 to the default C<--tuplesize> (if C<--tuplesizeall> is not given
|
||||
|
||||
- Uses C<--zmin>, C<--zmax> to set the colorbar range
|
||||
|
||||
It's clearer to set the relevant options explicitly, but C<--colormap> still
|
||||
exists for compatibility
|
||||
|
||||
=item
|
||||
|
||||
@ -612,10 +599,11 @@ instance C<--set 'xrange [20:10]'> to set the given inverted bounds.
|
||||
|
||||
=item
|
||||
|
||||
C<--xlabel/x2label/ylabel/y2label/zlabel xxx>
|
||||
C<--xlabel/x2label/ylabel/y2label/zlabel/cblabel xxx>
|
||||
|
||||
Label the given axis. The x2/y2-axis labels do not apply to 3d plots while the
|
||||
z-axis label applies I<only> to 3d plots.
|
||||
z-axis label applies I<only> to 3d plots. The "cblabel" applies to the colorbar,
|
||||
if there is one.
|
||||
|
||||
=item
|
||||
|
||||
|
194
bin/feedgnuplot
194
bin/feedgnuplot
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/perl
|
||||
#!/usr/bin/env perl
|
||||
|
||||
package feedgnuplot; # for the metacpan indexer
|
||||
|
||||
@ -16,7 +16,7 @@ use Pod::Usage;
|
||||
use Time::Piece;
|
||||
|
||||
# Makefile.PL assumes this is in ''
|
||||
my $VERSION = '1.60';
|
||||
my $VERSION = '1.62';
|
||||
|
||||
my %options;
|
||||
interpretCommandline();
|
||||
@ -115,11 +115,12 @@ sub interpretCommandline
|
||||
|
||||
'3d!', 'colormap!', 'lines!', 'points!', 'circles',
|
||||
'legend=s{2}', 'autolegend!',
|
||||
'xlabel=s', 'x2label=s', 'ylabel=s', 'y2label=s', 'zlabel=s',
|
||||
'xlabel=s', 'x2label=s', 'ylabel=s', 'y2label=s', 'zlabel=s', 'cblabel=s',
|
||||
'title=s', 'xlen=f',
|
||||
'xmin=s', 'xmax=s', 'x2min=s', 'x2max=s',
|
||||
'ymin=f', 'ymax=f', 'y2min=f', 'y2max=f',
|
||||
'zmin=f', 'zmax=f',
|
||||
'cbmin=f', 'cbmax=f',
|
||||
'x2=s@', 'y2=s@', 'x1y2=s@', 'x2y1=s@', 'x2y2=s@',
|
||||
'style=s{2}', 'curvestyle=s{2}', 'curvestyleall=s', 'styleall=s', 'with=s',
|
||||
'extracmds=s@', 'cmds=s@',
|
||||
@ -422,15 +423,6 @@ sub interpretCommandline
|
||||
exit -1;
|
||||
}
|
||||
|
||||
if(!$options{colormap})
|
||||
{
|
||||
if ( defined $options{zmin} || defined $options{zmax} || defined $options{zlabel} )
|
||||
{
|
||||
print STDERR "--zmin/zmax/zlabel only makes sense with --3d or --colormap\n";
|
||||
exit -1;
|
||||
}
|
||||
}
|
||||
|
||||
if ( defined $options{square_xy} )
|
||||
{
|
||||
print STDERR "--square_xy only makes sense with --3d\n";
|
||||
@ -788,6 +780,12 @@ sub mainThread
|
||||
$options{curvestyleall} = "with circles $options{curvestyleall}";
|
||||
}
|
||||
|
||||
# Required to ignore all lines that have '-' values, such as may come from
|
||||
# vnl-filter -p "dx=diff(x)" ... output. For instance, this plot is broken
|
||||
# without this extra line:
|
||||
# (echo '# x'; seq 5) | vnl-filter --noskipempty -p 'd=diff(x)' | ./feedgnuplot --lines
|
||||
print PIPE "set datafile missing \"-\"\n";
|
||||
|
||||
print PIPE "set style data $style\n" if $style;
|
||||
print PIPE "set grid\n";
|
||||
|
||||
@ -796,6 +794,7 @@ sub mainThread
|
||||
print(PIPE "set ylabel \"$options{ylabel }\"\n") if defined $options{ylabel};
|
||||
print(PIPE "set y2label \"$options{y2label}\"\n") if defined $options{y2label};
|
||||
print(PIPE "set zlabel \"$options{zlabel }\"\n") if defined $options{zlabel};
|
||||
print(PIPE "set cblabel \"$options{cblabel}\"\n") if defined $options{cblabel};
|
||||
print(PIPE "set title \"$options{title }\"\n") if defined $options{title};
|
||||
|
||||
if($options{square})
|
||||
@ -888,7 +887,15 @@ sub mainThread
|
||||
sendRangeCommand( "xrange", $options{xmin}, $options{xmax} );
|
||||
sendRangeCommand( "yrange", $options{ymin}, $options{ymax} );
|
||||
sendRangeCommand( "zrange", $options{zmin}, $options{zmax} );
|
||||
sendRangeCommand( "cbrange", $options{zmin}, $options{zmax} ) if($options{colormap});
|
||||
if($options{colormap})
|
||||
{
|
||||
# legacy behavior. Nobody should really be using --colormap
|
||||
sendRangeCommand( "cbrange", $options{zmin}, $options{zmax} );
|
||||
}
|
||||
else
|
||||
{
|
||||
sendRangeCommand( "cbrange", $options{cbmin},$options{cbmax});
|
||||
}
|
||||
|
||||
# add the extra global options
|
||||
print(PIPE "$_\n") foreach (@{$options{extracmds}});
|
||||
@ -1176,9 +1183,10 @@ sub plotStoredData
|
||||
my @nonemptyCurves = grep { $_->{datastring} } @curves;
|
||||
my @extraopts = map {$_->{options}} @nonemptyCurves;
|
||||
|
||||
my $body = join('', map { "$_," } @{$options{equation}});
|
||||
$body .= join(', ' , map({ "'-' $_" } @extraopts) );
|
||||
$body .= join('', map { ",$_" } @{$options{'equation-above'}});
|
||||
my @components = (@{$options{equation}},
|
||||
map({ "'-' $_" } @extraopts),
|
||||
@{$options{'equation-above'}});
|
||||
my $body = join(',', @components);
|
||||
|
||||
if($options{'3d'}) { print PIPE "splot $body\n"; }
|
||||
else { print PIPE "plot $body\n"; }
|
||||
@ -1412,56 +1420,110 @@ Simple plotting of piped data:
|
||||
10 25
|
||||
|
||||
$ seq 5 | awk '{print 2*$1, $1*$1}' |
|
||||
feedgnuplot --lines --points --legend 0 "data 0" --title "Test plot" --y2 1
|
||||
--unset grid --terminal 'dumb 80,40' --exit
|
||||
feedgnuplot \
|
||||
--terminal 'dumb 80,40' --exit \
|
||||
--lines \
|
||||
--points \
|
||||
--title "Test plot" \
|
||||
--y2 1 \
|
||||
--unset key \
|
||||
--unset grid
|
||||
|
||||
Test plot
|
||||
|
||||
10 +-----------------------------------------------------------------+ 25
|
||||
| + + + + + + + *##|
|
||||
| data 0 ***A*#* |
|
||||
| ** # |
|
||||
9 |-+ ** ## |
|
||||
| ** # |
|
||||
| ** # |
|
||||
| ** ## +-| 20
|
||||
8 |-+ A # |
|
||||
| ** # |
|
||||
| ** ## |
|
||||
| ** # |
|
||||
| ** B |
|
||||
7 |-+ ** ## |
|
||||
| ** ## +-| 15
|
||||
| ** # |
|
||||
| ** ## |
|
||||
6 |-+ *A ## |
|
||||
| ** ## |
|
||||
| ** # |
|
||||
| ** ## +-| 10
|
||||
5 |-+ ** ## |
|
||||
| ** #B |
|
||||
| ** ## |
|
||||
| ** ## |
|
||||
4 |-+ A ### |
|
||||
| ** ## |
|
||||
| ** ## +-| 5
|
||||
| ** ## |
|
||||
| ** ##B# |
|
||||
3 |-+ ** #### |
|
||||
| **#### |
|
||||
| #### |
|
||||
| + + + + + + + ##*|
|
||||
| ##* |
|
||||
| ## * |
|
||||
9 |-+ ## ** |
|
||||
| ## * |
|
||||
| ## * |
|
||||
| ## ** +-| 20
|
||||
8 |-+ B * |
|
||||
| ## * |
|
||||
| ## ** |
|
||||
| ## * |
|
||||
| ## A |
|
||||
7 |-+ ## ** |
|
||||
| ## ** +-| 15
|
||||
| ## * |
|
||||
| ## ** |
|
||||
6 |-+ #B ** |
|
||||
| ## ** |
|
||||
| ## * |
|
||||
| ## ** +-| 10
|
||||
5 |-+ ## ** |
|
||||
| ## *A |
|
||||
| ## ** |
|
||||
| ## ** |
|
||||
4 |-+ B *** |
|
||||
| ## ** |
|
||||
| ## ** +-| 5
|
||||
| ## ** |
|
||||
| ## **A* |
|
||||
3 |-+ ## **** |
|
||||
| ##**** |
|
||||
| ##** |
|
||||
|## + + + + + + + |
|
||||
2 +-----------------------------------------------------------------+ 0
|
||||
1 1.5 2 2.5 3 3.5 4 4.5 5
|
||||
|
||||
Here we asked for ASCII plotting, which is useful for documentation.
|
||||
|
||||
Simple real-time plotting example: plot how much data is received on the wlan0
|
||||
network interface in bytes/second (uses bash, awk and Linux):
|
||||
network interface in bytes/second. This plot updates at 1Hz, and shows the last
|
||||
10sec of history. The plot shown here is the final state of a sample run
|
||||
|
||||
$ while true; do sleep 1; cat /proc/net/dev; done |
|
||||
gawk '/wlan0/ {if(b) {print $2-b; fflush()} b=$2}' |
|
||||
feedgnuplot --lines --stream --xlen 10 --ylabel 'Bytes/sec' --xlabel seconds
|
||||
$ while true; do
|
||||
sleep 1;
|
||||
cat /proc/net/dev;
|
||||
done \
|
||||
| gawk '/wlan0/ {if(b) {print $2-b; N++; fflush()} b=$2} N==15 {exit}' \
|
||||
| feedgnuplot \
|
||||
--terminal 'dumb 80,40' --exit \
|
||||
--lines \
|
||||
--title "wlan0 throughput" \
|
||||
--stream \
|
||||
--xlen 10 \
|
||||
--ylabel 'Bytes/sec' \
|
||||
--xlabel seconds \
|
||||
--unset key \
|
||||
--unset grid
|
||||
|
||||
wlan0 throughput
|
||||
300000 +---------------------------------------------------------------+
|
||||
| + + + + + |
|
||||
| |
|
||||
| |
|
||||
| * |
|
||||
250000 |-+ * +-|
|
||||
| ** |
|
||||
| * * |
|
||||
| * * |
|
||||
| * * |
|
||||
| * * |
|
||||
200000 |-+ * * +-|
|
||||
| * * |
|
||||
| * * |
|
||||
| * * |
|
||||
| * * |
|
||||
150000 |-+ * *+-|
|
||||
| * * |
|
||||
| * * |
|
||||
| * * |
|
||||
| * * |
|
||||
| * * |
|
||||
100000 |-+ * *-|
|
||||
| * * |
|
||||
| * *|
|
||||
| ** * *|
|
||||
| *** * * *|
|
||||
50000 |-+ *** * **** * +*|
|
||||
| ** ** ***** ** * |
|
||||
| ** * *** ** * |
|
||||
| ***** * ***** ** |
|
||||
|** *** |
|
||||
| + + + + + |
|
||||
0 +---------------------------------------------------------------+
|
||||
6 8 10 12 14
|
||||
seconds
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
@ -1924,9 +1986,16 @@ Interpret the X data as a time/date, parsed with the given format
|
||||
|
||||
C<--colormap>
|
||||
|
||||
Show a colormapped xy plot. Requires extra data for the color. zmin/zmax can be
|
||||
used to set the extents of the colors. Automatically sets the
|
||||
C<--rangesize>/C<--tuplesize>.
|
||||
This is a legacy option used to who a colormapped xy plot. It does:
|
||||
|
||||
- Adds C<palette> to C<--curvestyleall>
|
||||
|
||||
- Adds 1 to the default C<--tuplesize> (if C<--tuplesizeall> is not given
|
||||
|
||||
- Uses C<--zmin>, C<--zmax> to set the colorbar range
|
||||
|
||||
It's clearer to set the relevant options explicitly, but C<--colormap> still
|
||||
exists for compatibility
|
||||
|
||||
=item
|
||||
|
||||
@ -2003,10 +2072,11 @@ instance C<--set 'xrange [20:10]'> to set the given inverted bounds.
|
||||
|
||||
=item
|
||||
|
||||
C<--xlabel/x2label/ylabel/y2label/zlabel xxx>
|
||||
C<--xlabel/x2label/ylabel/y2label/zlabel/cblabel xxx>
|
||||
|
||||
Label the given axis. The x2/y2-axis labels do not apply to 3d plots while the
|
||||
z-axis label applies I<only> to 3d plots.
|
||||
z-axis label applies I<only> to 3d plots. The "cblabel" applies to the colorbar,
|
||||
if there is one.
|
||||
|
||||
=item
|
||||
|
||||
|
@ -66,6 +66,7 @@ complete -W \
|
||||
--zlabel \
|
||||
--zmax \
|
||||
--zmin \
|
||||
--cblabel \
|
||||
--xticlabels \
|
||||
--using \
|
||||
--usingall \
|
||||
|
@ -14,6 +14,7 @@ _arguments -S
|
||||
'--ylabel:Y-axis label:' \
|
||||
'--y2label:Y2-axis label:' \
|
||||
'--zlabel:Z-axis label:' \
|
||||
'--cblabel:Colorbar label:' \
|
||||
'--title:Plot title:' \
|
||||
'--autolegend[Label each plot with its data ID]' \
|
||||
'(--3d)--xlen[the size of the x-window to plot]:window size:' \
|
||||
|
266
debian/changelog
vendored
266
debian/changelog
vendored
@ -1,266 +0,0 @@
|
||||
feedgnuplot (1.60-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- --timefmt --histogram work together
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Fri, 27 Aug 2021 10:27:56 -0700
|
||||
|
||||
feedgnuplot (1.58-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Added --using, --usingall
|
||||
- Added --cmds as a synonym for --extracmds
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Thu, 11 Mar 2021 16:33:01 -0800
|
||||
|
||||
feedgnuplot (1.57-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Added --xticlabels to label the x-axis tics from the data
|
||||
- Added --equation-above and --equation-below to control the equation
|
||||
drawing sequence
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sun, 21 Feb 2021 14:00:59 -0800
|
||||
|
||||
feedgnuplot (1.56-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Updated default hardcopy settings
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Wed, 03 Feb 2021 14:44:44 -0800
|
||||
|
||||
feedgnuplot (1.55-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Fixed regression in 1.54: --style overrides --with
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Mon, 20 Jul 2020 15:55:13 -0700
|
||||
|
||||
feedgnuplot (1.54-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Added --every and --everyall to decimate the input data
|
||||
- --timefmt can be used with --histogram
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Fri, 17 Apr 2020 14:21:07 -0700
|
||||
|
||||
feedgnuplot (1.53-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Full support for all 4 axes. Added --x2...
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Wed, 08 Jan 2020 18:59:29 -0800
|
||||
|
||||
feedgnuplot (1.52-1) unstable; urgency=medium
|
||||
|
||||
[ Jelmer Vernooij ]
|
||||
* Use secure copyright file specification URI.
|
||||
* Trim trailing whitespace.
|
||||
|
||||
[ Dima Kogan ]
|
||||
* New upstream release
|
||||
- --square-xy and --squarexy as synonyms for --square_xy
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sun, 25 Aug 2019 15:34:56 -0700
|
||||
|
||||
feedgnuplot (1.51-1) unstable; urgency=medium
|
||||
|
||||
* Added .gp "terminal" to create self-plotting gnuplot files
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sat, 29 Sep 2018 11:00:40 -0700
|
||||
|
||||
feedgnuplot (1.50-1) unstable; urgency=medium
|
||||
|
||||
* Script waits for the plot window to close before exiting
|
||||
Instead of sleeping forever. This is really nice! I no longer need
|
||||
to quit the plot window AND then C-c. Quitting the plot window is
|
||||
now sufficient
|
||||
* by default --image sets range noextend
|
||||
* tab-completion knows about the fnormal distribution
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Fri, 24 Aug 2018 13:16:35 -0700
|
||||
|
||||
feedgnuplot (1.49-2) unstable; urgency=medium
|
||||
|
||||
* Updated Vcs-... tags to salsa
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sun, 17 Jun 2018 22:18:18 -0700
|
||||
|
||||
feedgnuplot (1.49-1) unstable; urgency=medium
|
||||
|
||||
* --vnl now works with plots that have rangesize > 1
|
||||
* zsh completion: --xlen argument isn't optional
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Fri, 16 Mar 2018 13:56:27 -0700
|
||||
|
||||
feedgnuplot (1.48-1) unstable; urgency=medium
|
||||
|
||||
* Added --tuplesize and --tuplesizeall
|
||||
* vnlog integration
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sat, 24 Feb 2018 12:56:05 -0800
|
||||
|
||||
feedgnuplot (1.45-1) unstable; urgency=medium
|
||||
|
||||
* zsh completion: --hardcopy, --image suggest filenames
|
||||
* --image now produces a nicer legend: just the filename
|
||||
* --curvestyle now overrides --curvestyleall
|
||||
- This is a bug fix
|
||||
* The version is now treated as a string not as a number
|
||||
- So "1.40" is distinct from "1.4"
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sun, 29 Oct 2017 14:06:26 -0700
|
||||
|
||||
feedgnuplot (1.44-1) unstable; urgency=medium
|
||||
|
||||
* --image always goes on the FRONT of the equation list
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Tue, 20 Jun 2017 16:45:42 -0700
|
||||
|
||||
feedgnuplot (1.43-1) unstable; urgency=medium
|
||||
|
||||
* added --image as a convenience wrapper for --equation
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Mon, 19 Jun 2017 13:16:18 -0700
|
||||
|
||||
feedgnuplot (1.42-1) unstable; urgency=medium
|
||||
|
||||
* Upstream update:
|
||||
- Fixed regression: data can now come from STDIN or files on the
|
||||
cmdline
|
||||
- reworded manpage of --exit
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Tue, 25 Apr 2017 11:02:18 -0700
|
||||
|
||||
feedgnuplot (1.41-1) unstable; urgency=medium
|
||||
|
||||
* Upstream update:
|
||||
- Histograms: --xlen can coexist with --xmin/--xmax
|
||||
- Histograms: work as expected with --xlen and --monotonic
|
||||
- Histograms: better sanity checking of options
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Fri, 24 Feb 2017 23:53:27 -0800
|
||||
|
||||
feedgnuplot (1.40-1) unstable; urgency=medium
|
||||
|
||||
* Upstream update:
|
||||
- If the options couldn't be parsed I don't dump the whole manpage
|
||||
- --style and --rangesize can now take a comma-separated list of IDs
|
||||
- 'any' is from List::MoreUtils, not List::Util
|
||||
- the sleep-forever delay at end is now > 1000 days
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Fri, 25 Nov 2016 14:49:36 -0800
|
||||
|
||||
feedgnuplot (1.39-1) unstable; urgency=medium
|
||||
|
||||
* Upstream update:
|
||||
- by default, histograms are plotted in expected ways
|
||||
- No enhanced text mode in hardcopies, slightly larger font size
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sat, 15 Oct 2016 20:45:15 -0700
|
||||
|
||||
feedgnuplot (1.37-1) unstable; urgency=medium
|
||||
|
||||
* Upstream update: At the end of a streaming plot, include the last
|
||||
chunk of data
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Fri, 01 Jan 2016 08:14:23 -0800
|
||||
|
||||
feedgnuplot (1.36-1) unstable; urgency=medium
|
||||
|
||||
* Upstream update: added --equation to plot symbolic equations
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Fri, 13 Nov 2015 11:14:30 -0800
|
||||
|
||||
feedgnuplot (1.35-1) unstable; urgency=medium
|
||||
|
||||
* Upstream update: fancier handling of termination conditions, no more
|
||||
threading code
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Mon, 02 Nov 2015 13:55:32 -0800
|
||||
|
||||
feedgnuplot (1.34-2) unstable; urgency=medium
|
||||
|
||||
* Depends now works with the 'gnuplot5' packages
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Fri, 10 Oct 2014 14:05:17 -0700
|
||||
|
||||
feedgnuplot (1.34-1) unstable; urgency=medium
|
||||
|
||||
* Very minor upstream update
|
||||
* gnuplot-nox can no satisfy the gnuplot dependency for feedgnuplot
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Wed, 06 Aug 2014 15:19:56 -0700
|
||||
|
||||
feedgnuplot (1.33-1) unstable; urgency=low
|
||||
|
||||
* Upstream update: fixed incorrect plotting of --timefmt --rangesize
|
||||
plots
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Thu, 06 Feb 2014 23:19:02 -0800
|
||||
|
||||
feedgnuplot (1.32-1) unstable; urgency=low
|
||||
|
||||
* Added --rangesize and --rangesizeall. Different curves can now plot
|
||||
different-size tuples
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Wed, 05 Feb 2014 14:00:44 -0800
|
||||
|
||||
feedgnuplot (1.30-1) unstable; urgency=low
|
||||
|
||||
* made the VCS links canonical
|
||||
* added --set, --unset, --with, --style, --styleall
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Fri, 24 Jan 2014 15:50:03 -0800
|
||||
|
||||
feedgnuplot (1.28-1) unstable; urgency=low
|
||||
|
||||
* Upstream update:
|
||||
- Removed example debianization
|
||||
- Removed unreliable unit tests from automated testing (Closes: #731080)
|
||||
* gnuplot dependency now favors graphical gnuplot packages
|
||||
* Removed Anton Gladky from the Uploaders
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Wed, 04 Dec 2013 02:05:08 -0800
|
||||
|
||||
feedgnuplot (1.26-1) unstable; urgency=low
|
||||
|
||||
[ Dima Kogan ]
|
||||
* Minor POD update
|
||||
* Added test suite
|
||||
* Added initial support for --timefmt. Currently time/date data is
|
||||
supported only at the x-axis domain
|
||||
* Added --exit option for force feedgnuplot to return even if gnuplot
|
||||
may not yet be done rendering (patch by Eric Schulte)
|
||||
* Reformatted the documentation
|
||||
* y2-axis curves no longer have a thicker line by default
|
||||
* --hardcopy now handles piped output (gnuplot 'set output |process'
|
||||
syntax)
|
||||
|
||||
[ Anton Gladky ]
|
||||
* Add libipc-run-perl to Build-Depends to execute tests
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sun, 20 Oct 2013 01:19:51 -0700
|
||||
|
||||
feedgnuplot (1.24-2) unstable; urgency=low
|
||||
|
||||
* Now building the html documentation from the correct POD source
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sun, 28 Apr 2013 17:42:52 -0700
|
||||
|
||||
feedgnuplot (1.24-1) unstable; urgency=low
|
||||
|
||||
* Fixed regression in --monotonic. This works again now
|
||||
* moved POD back into the main source file. This fixes the broken usage
|
||||
messages
|
||||
* added --version
|
||||
* fixed watchfile to work with newer github pages
|
||||
* priority now optional
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Fri, 08 Feb 2013 02:01:32 -0800
|
||||
|
||||
feedgnuplot (1.23-2) unstable; urgency=low
|
||||
|
||||
* Initial Debian release (Closes: #686413)
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Tue, 30 Oct 2012 11:14:01 -0700
|
1
debian/compat
vendored
1
debian/compat
vendored
@ -1 +0,0 @@
|
||||
9
|
22
debian/control
vendored
22
debian/control
vendored
@ -1,22 +0,0 @@
|
||||
Source: feedgnuplot
|
||||
Section: science
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>= 9), libstring-shellquote-perl, perl, gawk, gnuplot, libipc-run-perl, liblist-moreutils-perl, libvnlog-perl, vnlog
|
||||
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
|
||||
Uploaders: Dima Kogan <dkogan@debian.org>
|
||||
Standards-Version: 3.9.4
|
||||
Homepage: https://github.com/dkogan/feedgnuplot
|
||||
Vcs-Browser: https://salsa.debian.org/science-team/feedgnuplot
|
||||
Vcs-Git: https://salsa.debian.org/science-team/feedgnuplot.git
|
||||
|
||||
Package: feedgnuplot
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${perl:Depends},
|
||||
liblist-moreutils-perl,
|
||||
gnuplot-qt | gnuplot-x11 | gnuplot-nox | gnuplot5-qt | gnuplot5-x11 | gnuplot5-nox | gnuplot
|
||||
Suggests: vnlog
|
||||
Description: Pipe-oriented frontend to Gnuplot
|
||||
Flexible, command-line-oriented frontend to Gnuplot. Creates plots from data
|
||||
coming in on STDIN or given in a filename passed on the commandline. Various
|
||||
data representations are supported, as is hardcopy output and streaming display
|
||||
of live data.
|
24
debian/copyright
vendored
24
debian/copyright
vendored
@ -1,24 +0,0 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Source: https://github.com/dkogan/feedgnuplot
|
||||
Upstream-Contact: Dima Kogan, <dima@secretsauce.net>
|
||||
Upstream-Name: feedgnuplot
|
||||
|
||||
Files: *
|
||||
Copyright: 2011, Dima Kogan <dima@secretsauce.net>
|
||||
License: Artistic or GPL-1+
|
||||
|
||||
License: Artistic
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the Artistic License, which comes with Perl.
|
||||
.
|
||||
On Debian GNU/Linux systems, the complete text of the Artistic License
|
||||
can be found in `/usr/share/common-licenses/Artistic'.
|
||||
|
||||
License: GPL-1+
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 1, or (at your option)
|
||||
any later version.
|
||||
.
|
||||
On Debian GNU/Linux systems, the complete text of version 1 of the
|
||||
General Public License can be found in `/usr/share/common-licenses/GPL-1'.
|
9
debian/feedgnuplot.doc-base
vendored
9
debian/feedgnuplot.doc-base
vendored
@ -1,9 +0,0 @@
|
||||
Document: feedgnuplot
|
||||
Title: Feedgnuplot Manual
|
||||
Author: Dima Kogan
|
||||
Abstract: Formatted manpage for feedgnuplot
|
||||
Section: Science/Data Analysis
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/feedgnuplot/feedgnuplot.html
|
||||
Files: /usr/share/doc/feedgnuplot/feedgnuplot.html
|
1
debian/feedgnuplot.docs
vendored
1
debian/feedgnuplot.docs
vendored
@ -1 +0,0 @@
|
||||
feedgnuplot.html
|
2
debian/feedgnuplot.install
vendored
2
debian/feedgnuplot.install
vendored
@ -1,2 +0,0 @@
|
||||
completions/bash/feedgnuplot /usr/share/bash-completion/completions/
|
||||
completions/zsh/_feedgnuplot /usr/share/zsh/vendor-completions
|
4
debian/gbp.conf
vendored
4
debian/gbp.conf
vendored
@ -1,4 +0,0 @@
|
||||
[DEFAULT]
|
||||
debian-branch = debian
|
||||
upstream-tag = v%(version)s
|
||||
pristine-tar = True
|
12
debian/rules
vendored
12
debian/rules
vendored
@ -1,12 +0,0 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_auto_build:
|
||||
dh_auto_build
|
||||
pod2html --title=feedgnuplot bin/feedgnuplot > feedgnuplot.html
|
||||
|
||||
override_dh_auto_clean:
|
||||
rm -rf feedgnuplot.html pod2htm*
|
||||
dh_auto_clean
|
1
debian/source/format
vendored
1
debian/source/format
vendored
@ -1 +0,0 @@
|
||||
3.0 (quilt)
|
4
debian/watch
vendored
4
debian/watch
vendored
@ -1,4 +0,0 @@
|
||||
version=3
|
||||
opts=uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \
|
||||
https://github.com/dkogan/feedgnuplot/tags .*/v?(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))
|
||||
# Bart Martens <bartm@debian.org> Sat, 22 Dec 2012 12:54:18 +0000
|
141
documentation-header-network-throughput-plot.svg
Normal file
141
documentation-header-network-throughput-plot.svg
Normal file
@ -0,0 +1,141 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 800 600"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.1 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="800" height="600" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.190' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.190' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.190' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.190' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.190' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.190' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.190' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.190' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,532.80 L124.50,532.80 M770.62,532.80 L760.12,532.80 '/> <g transform="translate(104.21,537.35)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 0</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,454.50 L124.50,454.50 M770.62,454.50 L760.12,454.50 '/> <g transform="translate(104.21,459.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 50000</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,376.20 L124.50,376.20 M770.62,376.20 L760.12,376.20 '/> <g transform="translate(104.21,380.75)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 100000</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,297.90 L124.50,297.90 M770.62,297.90 L760.12,297.90 '/> <g transform="translate(104.21,302.45)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 150000</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,219.61 L124.50,219.61 M770.62,219.61 L760.12,219.61 '/> <g transform="translate(104.21,224.16)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 200000</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,141.31 L124.50,141.31 M770.62,141.31 L760.12,141.31 '/> <g transform="translate(104.21,145.86)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 250000</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,63.01 L124.50,63.01 M770.62,63.01 L760.12,63.01 '/> <g transform="translate(104.21,67.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 300000</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M179.66,532.80 L179.66,522.30 M179.66,63.01 L179.66,73.51 '/> <g transform="translate(179.66,558.35)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 6</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M310.99,532.80 L310.99,522.30 M310.99,63.01 L310.99,73.51 '/> <g transform="translate(310.99,558.35)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 8</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M442.31,532.80 L442.31,522.30 M442.31,63.01 L442.31,73.51 '/> <g transform="translate(442.31,558.35)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 10</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M573.63,532.80 L573.63,522.30 M573.63,63.01 L573.63,73.51 '/> <g transform="translate(573.63,558.35)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 12</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M704.96,532.80 L704.96,522.30 M704.96,63.01 L704.96,73.51 '/> <g transform="translate(704.96,558.35)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 14</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,63.01 L114.00,532.80 L770.62,532.80 L770.62,63.01 L114.00,63.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(148, 0, 211)' d='M114.00,501.01 L179.66,485.53 L245.32,440.28 L310.99,424.13 L376.65,501.11 L442.31,485.75 L507.97,460.08 L573.63,443.50
|
||||
L639.30,496.07 L704.96,118.85 L770.62,494.86 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb(148, 0, 211)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M114.00,63.01 L114.00,532.80 L770.62,532.80 L770.62,63.01 L114.00,63.01 Z '/> <g transform="translate(22.38,297.91) rotate(270.00)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text>Bytes/sec</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(442.31,589.85)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text>seconds</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(442.31,36.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text>wlan0 throughput</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.0 KiB |
204
documentation-header-plot.svg
Normal file
204
documentation-header-plot.svg
Normal file
@ -0,0 +1,204 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 800 600"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.1 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="800" height="600" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.190' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.190' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.190' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.190' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.190' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.190' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.190' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.190' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,558.00 L64.34,558.00 '/> <g transform="translate(44.05,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 2</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,496.13 L64.34,496.13 '/> <g transform="translate(44.05,500.68)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 3</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,434.25 L64.34,434.25 '/> <g transform="translate(44.05,438.80)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 4</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,372.38 L64.34,372.38 '/> <g transform="translate(44.05,376.93)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 5</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,310.50 L64.34,310.50 '/> <g transform="translate(44.05,315.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 6</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,248.63 L64.34,248.63 '/> <g transform="translate(44.05,253.18)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 7</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,186.76 L64.34,186.76 '/> <g transform="translate(44.05,191.31)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 8</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,124.88 L64.34,124.88 '/> <g transform="translate(44.05,129.43)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 9</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,63.01 L64.34,63.01 '/> <g transform="translate(44.05,67.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end">
|
||||
<text> 10</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,558.00 L53.84,547.50 M53.84,63.01 L53.84,73.51 '/> <g transform="translate(53.84,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 1</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M137.32,558.00 L137.32,547.50 M137.32,63.01 L137.32,73.51 '/> <g transform="translate(137.32,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 1.5</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M220.80,558.00 L220.80,547.50 M220.80,63.01 L220.80,73.51 '/> <g transform="translate(220.80,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 2</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M304.28,558.00 L304.28,547.50 M304.28,63.01 L304.28,73.51 '/> <g transform="translate(304.28,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 2.5</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M387.76,558.00 L387.76,547.50 M387.76,63.01 L387.76,73.51 '/> <g transform="translate(387.76,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 3</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M471.23,558.00 L471.23,547.50 M471.23,63.01 L471.23,73.51 '/> <g transform="translate(471.23,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 3.5</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M554.71,558.00 L554.71,547.50 M554.71,63.01 L554.71,73.51 '/> <g transform="translate(554.71,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 4</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M638.19,558.00 L638.19,547.50 M638.19,63.01 L638.19,73.51 '/> <g transform="translate(638.19,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 4.5</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M721.67,558.00 L721.67,547.50 M721.67,63.01 L721.67,73.51 '/> <g transform="translate(721.67,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text> 5</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M721.67,558.00 L711.17,558.00 '/> <g transform="translate(731.46,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
|
||||
<text> 0</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M721.67,459.00 L711.17,459.00 '/> <g transform="translate(731.46,463.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
|
||||
<text> 5</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M721.67,360.00 L711.17,360.00 '/> <g transform="translate(731.46,364.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
|
||||
<text> 10</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M721.67,261.01 L711.17,261.01 '/> <g transform="translate(731.46,265.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
|
||||
<text> 15</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M721.67,162.01 L711.17,162.01 '/> <g transform="translate(731.46,166.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
|
||||
<text> 20</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M721.67,63.01 L711.17,63.01 '/> <g transform="translate(731.46,67.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
|
||||
<text> 25</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,63.01 L53.84,558.00 L721.67,558.00 L721.67,63.01 L53.84,63.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(148, 0, 211)' d='M53.84,538.20 L220.80,478.80 L387.76,379.80 L554.71,241.21 L721.67,63.01 '/> <use xlink:href='#gpPt0' transform='translate(53.84,538.20) scale(5.25)' color='rgb(148, 0, 211)'/>
|
||||
<use xlink:href='#gpPt0' transform='translate(220.80,478.80) scale(5.25)' color='rgb(148, 0, 211)'/>
|
||||
<use xlink:href='#gpPt0' transform='translate(387.76,379.80) scale(5.25)' color='rgb(148, 0, 211)'/>
|
||||
<use xlink:href='#gpPt0' transform='translate(554.71,241.21) scale(5.25)' color='rgb(148, 0, 211)'/>
|
||||
<use xlink:href='#gpPt0' transform='translate(721.67,63.01) scale(5.25)' color='rgb(148, 0, 211)'/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 0, 158, 115)' d='M53.84,558.00 L220.80,434.25 L387.76,310.50 L554.71,186.76 L721.67,63.01 '/> <use xlink:href='#gpPt1' transform='translate(53.84,558.00) scale(5.25)' color='rgb( 0, 158, 115)'/>
|
||||
<use xlink:href='#gpPt1' transform='translate(220.80,434.25) scale(5.25)' color='rgb( 0, 158, 115)'/>
|
||||
<use xlink:href='#gpPt1' transform='translate(387.76,310.50) scale(5.25)' color='rgb( 0, 158, 115)'/>
|
||||
<use xlink:href='#gpPt1' transform='translate(554.71,186.76) scale(5.25)' color='rgb( 0, 158, 115)'/>
|
||||
<use xlink:href='#gpPt1' transform='translate(721.67,63.01) scale(5.25)' color='rgb( 0, 158, 115)'/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb( 0, 158, 115)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M53.84,63.01 L53.84,558.00 L721.67,558.00 L721.67,63.01 L53.84,63.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(387.75,36.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
|
||||
<text>Test plot</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@ -10,5 +10,28 @@ L<"slides"|https://github.com/dkogan/talk-feedgnuplot-vnlog/blob/master/feedgnup
|
||||
|
||||
EOF
|
||||
|
||||
seq 5 | awk '{print 2*$1, $1*$1}' |
|
||||
feedgnuplot \
|
||||
--lines \
|
||||
--points \
|
||||
--title "Test plot" \
|
||||
--y2 1 \
|
||||
--unset key \
|
||||
--unset grid \
|
||||
--hardcopy 'documentation-header-plot.svg'
|
||||
|
||||
|
||||
< bin/feedgnuplot \
|
||||
awk '/^ *Test plot$/,/^ *1 +1.5 +2 +2.5/ \
|
||||
{ if(!wrote_plot1) { print "=for html <p><img src=\"documentation-header-plot.svg\">"; \
|
||||
wrote_plot1 = 1; } \
|
||||
next; \
|
||||
} \
|
||||
/^ *wlan0 throughput$/,/seconds/ \
|
||||
{ if(!wrote_plot2) { print "=for html <p><img src=\"documentation-header-network-throughput-plot.svg\">"; \
|
||||
wrote_plot2 = 1; } \
|
||||
next; \
|
||||
} \
|
||||
/=head1/,0 \
|
||||
{ if(!/^ *--terminal .dumb 80,40. --exit/) { print } }' >> README.pod
|
||||
|
||||
< bin/feedgnuplot awk '/=head1/,0' >> README.pod
|
||||
|
Loading…
Reference in New Issue
Block a user