This is the eazy-gnuplot Reference Manual, version 0.2.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Sun Dec 15 06:01:59 2024 GMT+0.
The main system appears first, followed by any subsystem dependency.
eazy-gnuplot
An intuitive CL interface to gnuplot.
Masataro Asai
LLGPL
0.2.0
iterate
(system).
trivia
(system).
alexandria
(system).
uiop
(system).
src
(module).
Modules are listed depth-first from the system components tree.
eazy-gnuplot/src
eazy-gnuplot
(system).
package.lisp
(file).
Files are sorted by type and then listed depth-first from the systems components trees.
eazy-gnuplot/eazy-gnuplot.asd
eazy-gnuplot
(system).
eazy-gnuplot/src/package.lisp
src
(module).
*gnuplot-home*
(special variable).
datafile-plot
(function).
datafile-splot
(function).
fit
(function).
func-plot
(function).
func-splot
(function).
gp
(function).
gp-quote
(function).
gp-setup
(function).
plot
(function).
row
(function).
splot
(function).
with-plots
(macro).
%gp
(function).
%plot
(function).
*data-stream*
(special variable).
*keyword-separator-alist*
(special variable).
*plot-command-stream*
(special variable).
*plot-type*
(special variable).
*plot-type-multiplot*
(special variable).
*user-stream*
(special variable).
call-with-plots
(function).
data-filename
(function).
gp-quote-for
(function).
map-plist
(function).
new-plot
(condition).
wrap-range-result
(function).
Packages are listed by definition order.
eazy-gnuplot
alexandria
.
common-lisp
.
iterate
.
trivia.level2
.
*gnuplot-home*
(special variable).
datafile-plot
(function).
datafile-splot
(function).
fit
(function).
func-plot
(function).
func-splot
(function).
gp
(function).
gp-quote
(function).
gp-setup
(function).
plot
(function).
row
(function).
splot
(function).
with-plots
(macro).
%gp
(function).
%plot
(function).
*data-stream*
(special variable).
*keyword-separator-alist*
(special variable).
*plot-command-stream*
(special variable).
*plot-type*
(special variable).
*plot-type-multiplot*
(special variable).
*user-stream*
(special variable).
call-with-plots
(function).
data-filename
(function).
gp-quote-for
(function).
map-plist
(function).
new-plot
(condition).
wrap-range-result
(function).
Definitions are sorted by export status, category, package, and then by lexicographic order.
gnuplot command available in the system.
with-plots
stream - print commands to this stream.
Keywords
:debug boolean - prints debugging information.
:external-format encoding - the external format need for output, default is :default.
:persist boolean - allows windows from GUI terminals to remain open;
default is nil (not to persist).
Body
Place your plot code here.
EXPRESSION is a string representing gnuplot fitting target expressions e.g. f(x), ax**2+bx+c.
DATA is either a function producing data, a string
representing a gnuplot expression, or a pathanme for input data.
Render single line gnuplot commands
For example:
Command:
(gp :set :param)
(gp :set :style :line 1 :lc :rgb ’("’#999999’") :lt 1 ’("#border"))
Generates:
set param
set style line 1 lc rgb "’#999999’" lt 1 "#border"
- Return:
NIL
Map a value to the corresponding gnuplot string
Special command for setting up gnuplot. This is almost the same as GP command, however it serves some special purposes such as terminal detection from the output, multiplot etc.
DATA is either a function producing data, a string representing gnuplot functions, or a pathanme for input data.
Write a row
DATA is either a function producing data, a string representing gnuplot functions, or a pathanme for input data.
a stream dedicated for printing the inline data fed to the plot command. not meant to be exposed to the users.
an alist from a keyword to the corresponding separator string.
a stream dedicated for printing the plot command, and its non-data arguments, like plot style, linewidth, linetype. not meant to be exposed to the users.
a stream which is bounded by with-plots, and which the user can write some additional gnuplot commands into.
Jump to: | %
C D F G M P R S W |
---|
Jump to: | %
C D F G M P R S W |
---|
Jump to: | *
S |
---|
Jump to: | *
S |
---|
Jump to: | C E F M N P S |
---|
Jump to: | C E F M N P S |
---|