├── .gitignore ├── Changes ├── INSTALL ├── LICENSE ├── MANIFEST ├── Makefile.PL ├── README.pod ├── bin └── feedgnuplot ├── completions ├── bash │ └── feedgnuplot └── zsh │ └── _feedgnuplot ├── documentation-header-network-throughput-plot.svg ├── documentation-header-plot.svg ├── extract_README.sh ├── feedgnuplot.spec ├── guide ├── .dir-locals.el ├── gnuplot-terminal-test.svg ├── guide-1.svg ├── guide-10.svg ├── guide-11.svg ├── guide-12.svg ├── guide-13.svg ├── guide-14.svg ├── guide-15.svg ├── guide-16.svg ├── guide-17.svg ├── guide-18.svg ├── guide-19.svg ├── guide-2.svg ├── guide-20.svg ├── guide-21.svg ├── guide-22.svg ├── guide-23.svg ├── guide-24.svg ├── guide-25.svg ├── guide-26.svg ├── guide-27.svg ├── guide-3.svg ├── guide-4.svg ├── guide-5.svg ├── guide-6.svg ├── guide-7.svg ├── guide-8.svg ├── guide-9.svg └── guide.org ├── ignore.txt └── t ├── 3d-spiral-with-bounds-labels-square-xy-aspect-ratio.ref ├── 3d-spiral-with-bounds-labels.ref ├── basic-line-plot-to-piped-hardcopy.ref ├── basic-line-plot-with-bounds-square-aspect-ratio.ref ├── basic-line-plot-with-bounds.ref ├── basic-line-plot.ref ├── basic-lines-only-plot.ref ├── basic-points-only-plot.ref ├── basic-streaming-test-twice-as-fast.ref ├── basic-streaming-test.ref ├── basic-timefmt-plot.ref ├── basic-xticlabels-domain.ref ├── basic-xticlabels-no-domain.ref ├── circles.ref ├── cumulative-histogram.ref ├── dataid-plot.ref ├── domain-plot.ref ├── equations.ref ├── error-bars-using-extravaluesperpoint.ref ├── error-bars-using-rangesize-rangesizeall.ref ├── error-bars-using-rangesizeall.ref ├── error-bars-using-tuplesize-tuplesizeall.ref ├── error-bars-using-tuplesize.ref ├── every-individual.ref ├── everyall.ref ├── histogram-plot.ref ├── lines-on-both-axes-with-labels-legends-titles-different-styles.ref ├── lines-on-both-axes-with-labels-legends-titles.ref ├── manifest.t ├── monotonicity-check.ref ├── plots.t ├── streaming-with-monotonic.ref ├── streaming-with-xlen.ref ├── timefmt-histo.ref ├── timefmt-plot-with-bounds.ref ├── timefmt-plot-with-monotonic.ref ├── timefmt-streaming-plot-with-monotonic.ref ├── timefmt-streaming-plot-with-xlen.ref ├── timefmt-with-custom-rangesize.ref ├── timefmt-with-vnl-with-style.ref ├── timefmt-with-vnl-with-style0-default1.ref ├── timefmt-without-vnl-with-style.ref ├── timefmt-without-vnl-with-style0-default1.ref ├── timefmt-without-vnl.ref ├── using-individual.ref ├── usingall.ref ├── xticlabels-clustered.ref ├── xticlabels-styles-with-tuplesize.ref └── xticlabels-styles.ref /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/Changes -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/README.pod -------------------------------------------------------------------------------- /bin/feedgnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/bin/feedgnuplot -------------------------------------------------------------------------------- /completions/bash/feedgnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/completions/bash/feedgnuplot -------------------------------------------------------------------------------- /completions/zsh/_feedgnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/completions/zsh/_feedgnuplot -------------------------------------------------------------------------------- /documentation-header-network-throughput-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/documentation-header-network-throughput-plot.svg -------------------------------------------------------------------------------- /documentation-header-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/documentation-header-plot.svg -------------------------------------------------------------------------------- /extract_README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/extract_README.sh -------------------------------------------------------------------------------- /feedgnuplot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/feedgnuplot.spec -------------------------------------------------------------------------------- /guide/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/.dir-locals.el -------------------------------------------------------------------------------- /guide/gnuplot-terminal-test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/gnuplot-terminal-test.svg -------------------------------------------------------------------------------- /guide/guide-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-1.svg -------------------------------------------------------------------------------- /guide/guide-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-10.svg -------------------------------------------------------------------------------- /guide/guide-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-11.svg -------------------------------------------------------------------------------- /guide/guide-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-12.svg -------------------------------------------------------------------------------- /guide/guide-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-13.svg -------------------------------------------------------------------------------- /guide/guide-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-14.svg -------------------------------------------------------------------------------- /guide/guide-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-15.svg -------------------------------------------------------------------------------- /guide/guide-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-16.svg -------------------------------------------------------------------------------- /guide/guide-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-17.svg -------------------------------------------------------------------------------- /guide/guide-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-18.svg -------------------------------------------------------------------------------- /guide/guide-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-19.svg -------------------------------------------------------------------------------- /guide/guide-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-2.svg -------------------------------------------------------------------------------- /guide/guide-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-20.svg -------------------------------------------------------------------------------- /guide/guide-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-21.svg -------------------------------------------------------------------------------- /guide/guide-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-22.svg -------------------------------------------------------------------------------- /guide/guide-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-23.svg -------------------------------------------------------------------------------- /guide/guide-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-24.svg -------------------------------------------------------------------------------- /guide/guide-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-25.svg -------------------------------------------------------------------------------- /guide/guide-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-26.svg -------------------------------------------------------------------------------- /guide/guide-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-27.svg -------------------------------------------------------------------------------- /guide/guide-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-3.svg -------------------------------------------------------------------------------- /guide/guide-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-4.svg -------------------------------------------------------------------------------- /guide/guide-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-5.svg -------------------------------------------------------------------------------- /guide/guide-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-6.svg -------------------------------------------------------------------------------- /guide/guide-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-7.svg -------------------------------------------------------------------------------- /guide/guide-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-8.svg -------------------------------------------------------------------------------- /guide/guide-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide-9.svg -------------------------------------------------------------------------------- /guide/guide.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/guide/guide.org -------------------------------------------------------------------------------- /ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/ignore.txt -------------------------------------------------------------------------------- /t/3d-spiral-with-bounds-labels-square-xy-aspect-ratio.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/3d-spiral-with-bounds-labels-square-xy-aspect-ratio.ref -------------------------------------------------------------------------------- /t/3d-spiral-with-bounds-labels.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/3d-spiral-with-bounds-labels.ref -------------------------------------------------------------------------------- /t/basic-line-plot-to-piped-hardcopy.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-line-plot-to-piped-hardcopy.ref -------------------------------------------------------------------------------- /t/basic-line-plot-with-bounds-square-aspect-ratio.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-line-plot-with-bounds-square-aspect-ratio.ref -------------------------------------------------------------------------------- /t/basic-line-plot-with-bounds.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-line-plot-with-bounds.ref -------------------------------------------------------------------------------- /t/basic-line-plot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-line-plot.ref -------------------------------------------------------------------------------- /t/basic-lines-only-plot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-lines-only-plot.ref -------------------------------------------------------------------------------- /t/basic-points-only-plot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-points-only-plot.ref -------------------------------------------------------------------------------- /t/basic-streaming-test-twice-as-fast.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-streaming-test-twice-as-fast.ref -------------------------------------------------------------------------------- /t/basic-streaming-test.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-streaming-test.ref -------------------------------------------------------------------------------- /t/basic-timefmt-plot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-timefmt-plot.ref -------------------------------------------------------------------------------- /t/basic-xticlabels-domain.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-xticlabels-domain.ref -------------------------------------------------------------------------------- /t/basic-xticlabels-no-domain.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/basic-xticlabels-no-domain.ref -------------------------------------------------------------------------------- /t/circles.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/circles.ref -------------------------------------------------------------------------------- /t/cumulative-histogram.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/cumulative-histogram.ref -------------------------------------------------------------------------------- /t/dataid-plot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/dataid-plot.ref -------------------------------------------------------------------------------- /t/domain-plot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/domain-plot.ref -------------------------------------------------------------------------------- /t/equations.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/equations.ref -------------------------------------------------------------------------------- /t/error-bars-using-extravaluesperpoint.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/error-bars-using-extravaluesperpoint.ref -------------------------------------------------------------------------------- /t/error-bars-using-rangesize-rangesizeall.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/error-bars-using-rangesize-rangesizeall.ref -------------------------------------------------------------------------------- /t/error-bars-using-rangesizeall.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/error-bars-using-rangesizeall.ref -------------------------------------------------------------------------------- /t/error-bars-using-tuplesize-tuplesizeall.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/error-bars-using-tuplesize-tuplesizeall.ref -------------------------------------------------------------------------------- /t/error-bars-using-tuplesize.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/error-bars-using-tuplesize.ref -------------------------------------------------------------------------------- /t/every-individual.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/every-individual.ref -------------------------------------------------------------------------------- /t/everyall.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/everyall.ref -------------------------------------------------------------------------------- /t/histogram-plot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/histogram-plot.ref -------------------------------------------------------------------------------- /t/lines-on-both-axes-with-labels-legends-titles-different-styles.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/lines-on-both-axes-with-labels-legends-titles-different-styles.ref -------------------------------------------------------------------------------- /t/lines-on-both-axes-with-labels-legends-titles.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/lines-on-both-axes-with-labels-legends-titles.ref -------------------------------------------------------------------------------- /t/manifest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/manifest.t -------------------------------------------------------------------------------- /t/monotonicity-check.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/monotonicity-check.ref -------------------------------------------------------------------------------- /t/plots.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/plots.t -------------------------------------------------------------------------------- /t/streaming-with-monotonic.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/streaming-with-monotonic.ref -------------------------------------------------------------------------------- /t/streaming-with-xlen.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/streaming-with-xlen.ref -------------------------------------------------------------------------------- /t/timefmt-histo.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-histo.ref -------------------------------------------------------------------------------- /t/timefmt-plot-with-bounds.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-plot-with-bounds.ref -------------------------------------------------------------------------------- /t/timefmt-plot-with-monotonic.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-plot-with-monotonic.ref -------------------------------------------------------------------------------- /t/timefmt-streaming-plot-with-monotonic.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-streaming-plot-with-monotonic.ref -------------------------------------------------------------------------------- /t/timefmt-streaming-plot-with-xlen.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-streaming-plot-with-xlen.ref -------------------------------------------------------------------------------- /t/timefmt-with-custom-rangesize.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-with-custom-rangesize.ref -------------------------------------------------------------------------------- /t/timefmt-with-vnl-with-style.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-with-vnl-with-style.ref -------------------------------------------------------------------------------- /t/timefmt-with-vnl-with-style0-default1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-with-vnl-with-style0-default1.ref -------------------------------------------------------------------------------- /t/timefmt-without-vnl-with-style.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-without-vnl-with-style.ref -------------------------------------------------------------------------------- /t/timefmt-without-vnl-with-style0-default1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-without-vnl-with-style0-default1.ref -------------------------------------------------------------------------------- /t/timefmt-without-vnl.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/timefmt-without-vnl.ref -------------------------------------------------------------------------------- /t/using-individual.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/using-individual.ref -------------------------------------------------------------------------------- /t/usingall.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/usingall.ref -------------------------------------------------------------------------------- /t/xticlabels-clustered.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/xticlabels-clustered.ref -------------------------------------------------------------------------------- /t/xticlabels-styles-with-tuplesize.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/xticlabels-styles-with-tuplesize.ref -------------------------------------------------------------------------------- /t/xticlabels-styles.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkogan/feedgnuplot/HEAD/t/xticlabels-styles.ref --------------------------------------------------------------------------------