-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathgnuplot.doc
More file actions
16904 lines (14757 loc) · 718 KB
/
gnuplot.doc
File metadata and controls
16904 lines (14757 loc) · 718 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
C Copyright (C) 1986 - 1993, 1998, 1999, 2000, 2001, 2004 Thomas Williams, Colin Kelley et al.
C
1 gnuplot
?gnuplot
^<h2 align="center"> An Interactive Plotting Program </h2>
^<p align="center"> Thomas Williams & Colin Kelley</p>
^<p align="center"> Version 5 organized by Ethan A Merritt and others</p>
^<p align="center">Major contributors (alphabetic order):<br>
^<br>
^ Hans-Bernhard Broeker, John Campbell,<br>
^ Robert Cunningham, David Denholm,<br>
^ Gershon Elber, Roger Fearick,<br>
^ Carsten Grammes, Lucas Hart,<br>
^ Lars Hecking, Péter Juhász,<br>
^ Thomas Koenig, David Kotz,<br>
^ Ed Kubaitis, Russell Lang,<br>
^ Timothée Lecomte, Alexander Lehmann,<br>
^ Alexander Mai, Bastian Märkisch,<br>
^ Ethan A Merritt, Petr Mikulík,<br>
^ Carsten Steger, Shigeharu Takeno,<br>
^ Tom Tkacik, Jos Van der Woude,<br>
^ James R. Van Zandt, Alex Woo, Johannes Zellner<br>
^</p>
^<p align="center"> Copyright (C) 1986 - 1993, 1998 - 2004 Thomas Williams, Colin Kelley<br>
^ Copyright (C) 2004 - 2022 various authors</p>
^<p align="center"> Mailing list for comments: <tt>[email protected]</tt><br>
^ Mailing list for bug reports: <tt>[email protected]</tt><br>
^ Web access (preferred): <tt>http://sourceforge.net/projects/gnuplot</tt></p>
^<p align="center"> This manual was originally prepared by Dick Crawford</p>
2 Copyright
?copyright
?license
Copyright (C) 1986 - 1993, 1998, 2004, 2007 Thomas Williams, Colin Kelley
Permission to use, copy, and distribute this software and its
documentation for any purpose with or without fee is hereby granted,
provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear
in supporting documentation.
Permission to modify the software is granted, but not the right to
distribute the complete modified source code. Modifications are to
be distributed as patches to the released version. Permission to
distribute binaries produced by compiling modified sources is granted,
provided you
1. distribute the corresponding source modifications from the
released version in the form of a patch file along with the binaries,
2. add special version identification to distinguish your version
in addition to the base release version number,
3. provide your name and address as the primary contact for the
support of your modified version, and
4. retain our contact information in regard to use of the base software.
Permission to distribute the released version of the source code along
with corresponding source modifications in the form of a patch file is
granted with same provisions 2 through 4 for binary distributions.
This software is provided "as is" without express or implied warranty
to the extent permitted by applicable law.
AUTHORS
Original Software:
Thomas Williams, Colin Kelley.
Gnuplot 2.0 additions:
Russell Lang, Dave Kotz, John Campbell.
Gnuplot 3.0 additions:
Gershon Elber and many others.
Gnuplot 4.0 and 5.0 additions:
See list of contributors at head of this document.
2 Introduction
?introduction
?
`Gnuplot` is a portable command-line driven graphing utility for Linux, OS/2,
MS Windows, OSX, VMS, and many other platforms. The source code is copyrighted
but freely distributed (i.e., you don't have to pay for it). It was originally
created to allow scientists and students to visualize mathematical functions
and data interactively, but has grown to support many non-interactive uses
such as web scripting. It is also used as a plotting engine by third-party
applications like Octave. Gnuplot has been supported and under active
development since 1986.
Gnuplot supports many types of plots in either 2D and 3D. It can draw using
lines, points, boxes, contours, vector fields, surfaces, and various
associated text. It also supports various specialized plot types.
Gnuplot supports many different types of output: interactive screen terminals
(with mouse and hotkey input), direct output to pen plotters or modern
printers, and output to many file formats (eps, emf, fig, jpeg, LaTeX, pdf, png,
postscript, ...). Gnuplot is easily extensible to include new output modes.
Recent additions include interactive terminals based on wxWidgets (usable
on multiple platforms), and Qt. Mouseable plots embedded in web pages
can be generated using the svg or HTML5 canvas terminal drivers.
The command language of `gnuplot` is case sensitive, i.e. commands and
function names written in lowercase are not the same as those written in
capitals. All command names may be abbreviated as long as the abbreviation is
not ambiguous. Any number of commands may appear on a line, separated by
semicolons (;). Strings may be set off by either single or double quotes,
although there are some subtle differences. See `syntax` and `quotes` for
more details. Example:
set title "My First Plot"; plot 'data'; print "all done!"
Commands may extend over several input lines by ending each line but the last
with a backslash (\). The backslash must be the _last_ character on each
line. The effect is as if the backslash and newline were not there. That
is, no white space is implied, nor is a comment terminated. Therefore,
commenting out a continued line comments out the entire command
(see `comments`). But note that if an error occurs somewhere on a multi-line
command, the parser may not be able to locate precisely where the error is
and in that case will not necessarily point to the correct line.
In this document, curly braces ({}) denote optional arguments and a vertical
bar (|) separates mutually exclusive choices. `Gnuplot` keywords or `help`
topics are indicated by backquotes or `boldface` (where available). Angle
brackets (<>) are used to mark replaceable tokens. In many cases, a default
value of the token will be taken for optional arguments if the token is
omitted, but these cases are not always denoted with braces around the angle
brackets.
For built-in help on any topic, type `help` followed by the name of the topic
or `help ?` to get a menu of available topics.
A large set of demo plots is available on the web page
^ <a href="http://www.gnuplot.info/demo/">
http://www.gnuplot.info/demo/
^ </a>
When run from command line, gnuplot is invoked using the syntax
gnuplot {OPTIONS} file1 file2 ...
where file1, file2, etc. are input file as in the `load` command.
On X11-based systems, you can use
gnuplot {X11OPTIONS} {OPTIONS} file1 file2 ...
see your X11 documentation and `x11` in this document.
Options interpreted by gnuplot may come anywhere on the line. Files are
executed in the order specified, as are commands supplied by the -e option,
for example
gnuplot file1.in -e "reset" file2.in
The special filename "-" is used to force reading from stdin. `Gnuplot` exits
after the last file is processed. If no load files are named, `Gnuplot` takes
interactive input from stdin. See help `batch/interactive` for more details.
The options specific to gnuplot can be listed by typing
gnuplot --help
See `command-line-options` for more details.
In sessions with an interactive plot window you can hit 'h' anywhere on the
plot for help about `hotkeys` and `mousing` features.
Section `seeking-assistance` will help you to find further information, help
and FAQ.
2 Seeking-assistance
?help-desk
?faq
?FAQ
?seeking-assistance
The canonical gnuplot home page can be found at
^ <a href="http://www.gnuplot.info">
http://www.gnuplot.info
^ </a>
Before seeking help, please check file FAQ.pdf or the above website for a
^ <a href="http://www.gnuplot.info/faq/">
FAQ (Frequently Asked Questions) list.
^ </a>
Another resource for help with specific plotting problems (not bugs) is
https://stackoverflow.com/questions/tagged/gnuplot
Bug reports and feature requests should be uploaded to the trackers at
http://sourceforge.net/projects/gnuplot/support
Please check previous reports to see if the bug you want to report has
already been fixed in a newer version.
When reporting a bug or posting a question, please include full details
of the gnuplot version, the terminal type, and the operating system.
A short self-contained script demonstrating the problem is very helpful.
Instructions for subscribing to gnuplot mailing lists may be
found via the gnuplot development website on SourceForge
^ <a href="http://sourceforge.net/projects/gnuplot">
http://sourceforge.net/projects/gnuplot
^ </a>
Please note that before you write to any of the gnuplot mailing lists you
must first subscribe to the list. This helps reduce the amount of spam.
The address for mailing to list members is:
A mailing list for those interested in the development version of gnuplot is:
2 New features
3 Features introduced in version 5.4
?new
These sections list new commands, plot styles, and other features introduced
in version 5.4.
4 Support for 64-bit integer arithmetic
?new 64-bit_arithmetic
#start
#b All evaluation of expressions and functions uses 64-integer arithmetic if
## supported by the platform.
#b Integer overflow is detected and handled according to user preference.
## See `overflow`.
#end
4 Voxel grids
?new voxels
Gnuplot now supports operations based on 3D grids of voxel data.
#start
#b `set vgrid $gridname size N` creates an NxNxN grid of voxels.
#b `set vxrange [vxmin:vxmax]` together with `set vyrange` and `set vzrange`
## define which region of space the grid occupies. This may or may not be
## identical to the xyz range of the plot.
#b `voxel(x,y,z)` can be used in expressions to read or write an individual voxel.
#b `vfill DATA_SOURCE using x:y:z:radius:(<expression>)` acts analogously to
## a plot command except that instead of plotting it increments voxels near each
## point in the input data.
#b `vclear $gridname` resets an existing voxel grid to contain all zero values.
#b the current contents of one or more voxel grids can be referenced by
## `splot` commands to assign colors or other properties of plot elements
## by using the `voxel` function in using specifiers.
## See demo `voxel.dem`.
#b voxel grids can also be plotted by name in `splot` commands with plot styles
## `dots`, `points`, or `isosurface`.
## See demo `vplot.dem`.
#end
4 New plot styles and style options
?new plot_styles
#start
#b 3D plot style `with polygons` reads polygon faces from a data file.
## This can be used to create a surface or to construct a solid object.
## See `with polygons`.
#b `splot $voxelgrid with {dots|points}` marks all voxels whose value is above
## a requested threshold level.
#b `splot $voxelgrid with isosurface` creates a tessellated 3D surface enclosing
## voxels above a requested threshold level. See `isosurface`.
#b Voxel grid values can be referenced in the `using` specifiers for 3D plots.
#b `set spiderplot` selects a new plotting mode allowing creation of spider plots
## (also known as radar charts). These are essentially parallel axis plots where
## the axes are arranged radially rather than vertically.
## See `spiderplot`, `set style spiderplot`, `set paxis`.
#b Plot style `with circles` can be used in 3D plots.
#b Plot style `with boxes` can be used in 3D plots.
#b 2D plot style `with arrows` is identical to `with vectors` except that each
## arrow is specified using x:y:length:angle rather than x:y:xdelta:ydelta
#b splot FOO with pm3d fillcolor <colorspec>
#b pm3d surfaces can have individual fillstyle and separate top/bottom fillcolor
#b pm3d option `noclipcb` causes quadrangles with palette color outside cbrange
## to be skipped rather than being drawn with color clipped to cbmin or cbmax.
#b Customized contour line types. See `set cntrparam`.
#end
4 New data pre-processing filters
?new filters
#start
#b `smooth zsort` sorts 2D points on values in a 3rd column. See `smooth zsort`.
#end
4 New commands and command options
?new commands
#start
#b Voxel grid commands. See `set vgrid`, `set vxrange`, `vclear`, `vfill`,
## and `voxel`.
#b New options for showing the xy xz and yz planes in 3D plots.
## See `set walls`, `set grid vertical`.
#b `set table separator {tab|comma|"char"}` can be used to create csv files.
## See `plot with table`.
#b New options `set view projection {xy|xz|yz}` adjust view angles, axis tic
## and label placement to generate a 2D projection of a 3D splot.
## `set view projection xy` is equivalent to `set view map`.
#b `set rgbmax <value>` controls interpretation of input RGB values.
#b Array size can be implicit if an initializer is present, e.g. `Array A = [1,2,3]`.
#b Optional radial clipping of line segments in polar mode. See `set clip`.
#b Extra lines to customize the key can be added by substituting `keyentry` in
## place of a filename or function in `plot` and `splot` commands.
## This produces a line in the key without generating a corresponding plot.
## See `keyentry`.
#b User-specified translation of mouse coordinates (EXPERIMENTAL).
## See map_projection demo.
#b `set datafile columnheaders` causes first line of input to be read as strings
## rather than as data values. Equivalent to `set key autotitle columnheader`
## except that it does not affect generation of key entries. If this option is
## in effect the `stats` command will generate an array of strings containing
## the column headers found.
#b You can define multiple textbox styles. See `set style textbox`.
#end
4 New terminals and terminal options
?new terminals
#start
#b The `pcl5` terminal has been extended to support PCL5e/PCL5c printers and
## many modern gnuplot features.
#b The `pstricks` terminal has been extended to support many modern gnuplot
## features including RGB colors and transparency, filled polygons, and boxes.
#b New terminal `pict2e` to use the LaTeX2e pict2e environment.
## It directly supersedes older terminals `latex`, `emtex`, `eepic`, and `tpic`,
## which are no longer built by default.
#b The `texdraw` terminal has been extended to support text at arbitrary angles,
## variable line width, v5 dashed lines, and filled boxes and polygons. It can
## now be used with plain TeX, too.
#b The previously experimental Direct2D variant of the `windows` terminal
## replaces the GDI and GDI+ variants. It now supports printing using D2D
## and color fonts.
#b The `pm` OS/2 terminal has been modernized to support e.g. uft8, bold and
## italic text, and dashed lines. (Since 5.2.7).
#b The `dospc` and `svga` DOS terminals have been modernized and now support
## interactive keyboard and mouse (svga only) input.
#end
4 Pixmaps as objects
?new pixmaps
#start
#b `set pixmap` allows import of an image in standard format (png jpeg gif) as
## a pixmap that can be positioned anywhere in a plot or on the page.
## Unlike plotting `with image`, pixmap objects retain their original aspect
## ratio and size independent of axis scaling or rotation. See `pixmap`.
#end
4 Week-date time formats
?new week-date_formats
The Covid-19 pandemic of 2020/2021 generated increased interest in plotting
epidemiological data, which is often tabulated using a "week date" reporting
convention. This revealed deficiencies with gnuplot support for this
convention, including errors in time formats %W and %U. These formats
worked incorrectly prior to version 5.4.2.
#start
#b Time specifier format %W has been brought into accord with the
## ISO 8601 week date standard.
#b Time specifier format %U has been brought into accord with the
## CDC/MMWR week date standard.
#b New function `tm_week(time, std)` returns ISO or CDC standard week of year.
#b New function `weekdate_iso(year, week, day)` converts ISO standard week date
## to calendar time.
#b New function `weekdate_cdc(year, week, day)` converts CDC standard week date
## to calendar time.
#end
4 Other new features
?new other
#start
#b Enhanced text mode accepts \U+xxxx (xxxx is a 4 or 5 character hexadecimal)
## as representing a Unicode code point that is converted to the corresponding
## UTF-8 byte sequence on output.
#b The character sequence $# in a `using` specifier evaluates to the total
## number of columns available in the current line of data. For example
## "plot FOO using 0:(column($# - 1))" plots the last-but-one field of each row.
#b Time/date input recognizes format %p to handle am/pm field
#b plot titles are evaluated *after* plotting, rather than before. This allows
## the title to reference quantities calculated while plotting.
#b Built-in modified Bessel functions (besi0 besi1 besin)
#b Built-in order N Bessel functions of the 1st and 2nd kind (besjn besyn)
#b (5.4.2) in "using" context, $# means "number of columns in current data line"
#b (5.4.2) "plot with fillsteps {above|below y=<value>}" analogous to filledcurves
#b (5.4.3) "nogrid" flag allows splot components to opt out of dgrid3d processing
#b (5.4.3) "set style histogram nokeyseparators" (see `newhistogram`)
#b (5.4.5) column(0) returns the linear ordering of nonuniform matrix elements.
## Thus for element A[i,j] in an MxN matrix,
## column(0) / M gives the row index i
## column(0) % M gives the column index j
#b (5.4.5) Component boxes in "plot with histograms" can be colored according to
## a separate column of category/color information. See `lc variable`.
#b (5.4.5) Fix a regression in version 5.4.4 that caused string->int promotion
## to incorrectly assume a leading 0 implies an octal number
#b (5.4.5) The position of the key box can be manually tweaked by giving an
## offset added to whatever position the program would otherwise use.
## See `set key offset`.
#b (5.4.6) New `set key` options force exact number of columns, exact key width.
#end
4 Changes
?new changes
#start
#b `pm3d filled area quadrangles` are clipped smoothly to current zrange.
## This affects pm3d surfaces and also the faces of 3D boxes, polygons, etc.
## `set pm3d border retrace` paints over potential antialiasing glitches between
## adjacent pm3d quadrangles by drawing a same-color border.
#b Revised syntax for plot style 'with parallelaxes'. See `parallel`.
## The histogram, parallelaxis, and spiderplot styles now use similar syntax
## that can iterate over plot elements:
## `plot for [column=1:N] DATA using column`
#b Sampling generated by pseudofile '+' is affected by `set trange`.
#b Offsets from `set offsets` are applied only to autoscaled axes.
## The documentation has always said this, but it was not applied consistently.
#b Imaginary values returned by the using specifier of a 2D plot are treated as
## undefined values (NaN) rather than as real(value). This was always true for
## function plots and 3D data plots. E.g. the following two plots are equivalent.
## plot [-1:1] sqrt(x); plot [-1:1] '+' using 1:(sqrt($1)
#b The `set fontpath` command is deprecated. The search path for fonts to be
## embedded in output from the postscript terminal has been revised.
#end
3 Features introduced in version 5.2
4 New plot styles and style options
#start
#b 3D plot style `with zerrorfill`. See `zerrorfill`, `fenceplots` and
^ <a href="http://gnuplot.info/demo_5.4/zerror.html">
zerror demo.
^ </a>
#b Beeswarm plots. See `set jitter`, `beeswarm` and
^ <a href="http://gnuplot.info/demo_5.4/jitter.html">
beeswarm plot demo
^ </a>
#b The symbol used for individual points in a plot can be controlled by data values
## (see `pointtype variable`)
#end
4 New data pre-processing filters
#start
#b Normalized frequency of occurrence in a data set (see `smooth fnormal`)
#b Automated binning of data (see `bins`)
#end
4 Polar mode improvements and extensions
#start
#b Polar coordinates may be used in label, arrow, and object definitions
#b `set [m]ttics` places ticmarks and labels on the perimeter of a polar plot. See
^ <a href="http://gnuplot.info/demo_5.4/ttics.html"> polar axis and ticlabels demo
^ </a>
#b `set rlabel` places a label above the r axis
#b Inverted `rrange` (i.e. set rrange [90:0]) allows use of celestial horizontal
## coordinates. See
^ <a href="http://gnuplot.info/demo_5.4/solar_path.html"> solar path demo
^ </a>
#b `set border polar` draws a solid line around the perimeter of a polar plot
#b `set theta` controls the position of theta = 0 around the perimeter of a
## polar plot and the sense (clockwise or anti-clockwise) of increasing theta
#end
4 Nonlinear coordinates systems
#start
#b Any plot axis can be assigned a pair of functions, possibly nonlinear, that
## describe the forward and reverse mapping to a linear range (see `set nonlinear`)
^ <a href="http://gnuplot.info/demo_5.4/nonlinear3.html">
Nonlinear x/y axis demo
^ </a>
#b The familiar command `set logscale` has been reimplemented as a special case
## nonlinear axis where the paired functions are log(x) and exp(x).
#end
4 New commands and command options
#start
#b Inside the bracketed clause of an iteration, `continue` jumps immediately
## to the next iteration, `break` immediately exits from the iteration
#b `toggle {<plotno> | "plottitle" | all}"` interactively enables or disables
## display of one element of the current plot (see `toggle`)
#b `save fit` replaces deprecated command `update`
#b `set table "outfile.name" append` will append subsequent tabulated plots to
## an existing text file rather replacing its contents
#b `set pm3d lighting` describes a lighting model with specular highlighting
## (see `lighting`)
#b `set minussign` tells gnuplot to use a special symbol in the current
## encoding to replace the ascii character '-' in negative numbers
#b `set micro` tells gnuplot to use a special symbol in the current encoding to
## replace the ascii character 'u' for the scientific notation prefix "micro"
## The special typographic symbols for micro and minussign are used only in axis
## tic labels and strings explicitly created with gprintf(). The byte sequence
## used to represent these characters depends on the current encoding.
#end
4 New data type "array"
#start
#b This gnuplot version introduces a new data type `array name[size]`.
## An array must be declared before use. Each array element A[i] may be a string,
## an integer, a real number, or a complex value. A single array may contain
## elements with different types. The cardinality operator |A| returns the size
## of array A. See `arrays`.
#end
4 New terminals and terminal options
#start
#b See `sixelgd` for description of a new terminal that supports interleaving
## plots with the command lines that generated them if gnuplot is run inside a
## vt340-compatible terminal emulator
#b The `domterm` terminal supports interleaving plots with the command lines
## that generated them if gnuplot is run inside an svg-aware terminal emulator
#b The `windows` terminal supports saving the current graph to a bitmap file
#b The `windows` terminal graph window can be docked to the wgnuplot text window
#b New (experimental) Direct2D/DirectWrite backend for the `windows` terminal
#b The `wxt` terminal supports exporting to an EMF file or printer on Windows
#b The `dumb` terminal supports ANSI colors for lines and fill area
#b The `tkcanvas` terminal has been rewritten to support many more modern gnuplot
## features, as well as new languages. (Since 5.0.3)
#end
4 Other new features
#start
#b An additional rotation angle `azimuth` affects the orientation of 3D plots.
## This can be set from the command line (see `set view azimuth`) or by dragging
## with the right mouse button. Hotkey `z` resets azimuth to 0.
#b gnuplot running under Windows can interpret Unicode (BMP) input scripts by
## converting them to the current encoding from `set encoding`, including UTF-8
#b Textboxes can be assigned a border color and fill color (see `set style textbox`)
#b Customized plot legends (see `plot title`, `set key`, `multiple keys`)
#b A sampling range specifier for plotting with pseudofile '+' can include a
## sampling interval. For example:
## plot sample [t=0:100:10] '+' using (t):(1):(label[t]) with labels
#b Pseudo-file '++' generates samples on the u and v axes, rather than x and y.
## This allows placement of multiple parametric surfaces in 3D that occupy
## distinct regions of Cartesian space. See `sampling.dem`.
#b new formats descriptors tH tM tS handle relative times (interval lengths).
##See `time_specifiers`.
#b ^R initiates a reverse-search through the history for the built-in readline
## which is used on Windows, too, see `command-line-editing`.
#b Revised printing support on Windows using `set output "PRN"`,
## see `windows printing`.
#end
3 Features introduced in version 5.0
#start
#b The dot-dash pattern of a line can now be specified independent of other
## line properties. See `dashtype`, `set dashtype`, `set linetype`
#b The default sequence of colors used for successive elements in a plot is
## more easily distinguished by users with color-vision defects.
## The color sequence is under user control (see `set colorsequence`).
## This mechanism can also be used to generate monochrome plots
## (see `set monochrome`). In previous gnuplot versions `monochrome` could only
## be selected when changing the current terminal via `set terminal`.
#b New plot styles `with parallelaxes`, `with table`, and labeled contours.
#b New data pre-processing filter for monotonic cubic splines (see `smooth mcsplines`)
#b Text markup now supports bold and italic font settings in addition to
## subscript, superscript, font size and other previously available properties.
## Enhanced text mode is now enabled by default. See `enhanced text`.
## Text elements can be enclosed in a box (see `set style textbox`).
#b Interactive terminals support hypertext labels that only appear when the
## mouse hovers over the label's anchor point.
#b New coordinate system (Degrees, Minutes, Seconds). See `set xtics geographic`.
#b The default format for axis labels is "% h" ("$%h$" for LaTeX terminals).
## This format is like the C standard format %g except that the exponential term,
## if present, is written using a superscript. E.g. 1.2 x 10^5 rather than 1.2E05.
#b Command scripts may place in-line data in a named data block for repeated
## plotting. See `inline data`.
#b Support for 32-bit Alpha channel + RGB color #AARRGGBB. See `colorspec`.
#b Support for HSV color space via a translation function hsv2rgb(H,S,V).
#b Secondary axes (x2, y2) may be locked to the primary axis via a mapping
## function. In the simplest case this guarantees that the primary and secondary
## axis ranges are identical. In the general case it allows you to define a
## non-linear axis, something that previously was possible only for log scaling.
## See `set link`.
#b Each function in a plot command may optionally be preceded by a sampling
## range. This does not affect the overall range of the plot, only the range
## over which this function is sampled. See `plot` and `piecewise.dem`.
#b If the external library libcerf is available, it is used to provide complex
## math routines cerf, cdawson, erfi, faddeeva, and the Voigt profile
## VP(x,sigma,gamma).
#b The `import` command attaches a user-defined function name to a function
## provided by an external shared object (support is operating-system dependent).
## A template header and example source and make files for creating a suitable
## external shared object are provided in the demo collection.
#b Previous commands in the history list of an interactive session can be
## reexecuted by number. For example, `history !5` will reexecute the command
## numbered 5 in the `history` list.
#b Bit-shift operators >> and <<.
#b Shell invocation of gnuplot can pass parameters to a gnuplot script.
## gnuplot -c scriptfile.gp ARG1 ARG2 ARG3 ...
#end
2 Differences between versions 4 and 5
?changes
?differences
Some changes introduced in version 5 may cause certain scripts written
for earlier versions of gnuplot to behave differently.
* Revised handling of input data containing NaN, inconsistent number of data
columns, or other unexpected content. See Note under `missing` for examples
and figures.
* Time coordinates are stored internally as the number of seconds relative to
the standard unix epoch 1-Jan-1970. Earlier versions of gnuplot used a
different epoch internally (1-Jan-2000). This change resolves inconsistencies
introduced whenever time in seconds was generated externally. The epoch
convention used by a particular gnuplot installation can be determined using
the command `print strftime("%F",0)`. Time is now stored to at least
millisecond precision.
* The function `timecolumn(N,"timeformat")` now has 2 parameters. Because the
new second parameter is not associated with any particular data axis, this
allows using the `timecolumn` function to read time data for reasons other than
specifying the x or y coordinate. This functionality replaces the command
sequence `set xdata time; set timefmt "timeformat"`. It allows combining time
data read from multiple files with different formats within a single plot.
* The `reverse` keyword of the `set [axis]range` command affects only
autoscaling. It does not invert or otherwise alter the meaning of a command
such as `set xrange [0:1]`. If you want to reverse the direction of the
x axis in such a case, say instead `set xrange [1:0]`.
* The `call` command is provides a set of variables ARGC, ARG0, ..., ARG9.
ARG0 holds the name of the script file being executed. ARG1 to ARG9 are string
variables and thus may either be referenced directly or expanded as macros,
e.g. @ARG1. The contents of ARG0 ... ARG9 may alternatively be accessed as
array elements ARGV[0] ... ARGV[ARGC]. An older gnuplot convention of
referencing call parameters as tokens $0 ... $9 is deprecated.
* The optional bandwidth for the kernel density smoothing option is taken from
a keyword rather than a data column. See `smooth kdensity`.
2 Deprecated syntax
?deprecated syntax
?backwards compatibility
?compatibility
Gnuplot version 4 deprecated certain syntax used in earlier versions but
provided a configuration option that allowed backward compatibility.
Support for the old syntax has now been removed.
Deprecated in version 4 and removed in version 5:
set title "Old" 0,-1
set data linespoints
plot 'file' thru f(x)
plot 1 2 4 # horizontal line at y=1
update
Current equivalent:
TITLE = "New"
set title TITLE offset char 0, char -1
set style data linespoints
plot 'file' using 1:(f(column(2)))
plot 1 linetype 2 pointtype 4
save fit "filename"
Deprecated in version 5
if (defined(VARNAME)) ...
set style increment user
call 'script' 1.23 ABC
(in script: print $0, "$1", "number of args = $#")
set fontpath
set clabel
fit control variables FIT_*
Current equivalent:
if (exists("VARNAME")) ...
set linetype
call 'script' 1.23 "ABC"
(in script: print ARG1, ARG2, "number of args = ", ARGC
set cntrlabel
set fit <option> <value>
Deprecated in version 5.4
# use of a file containing `reread` to perform iteration
N = 0; load "file-containing-reread";
file content:
N = N+1
plot func(N,x)
pause -1
if (N<5) reread
Current equivalent
do for [N=1:5] {
plot func(N, x)
pause -1
}
2 Demos and Online Examples
?demos
?online examples
?examples
The `gnuplot` distribution contains a collection of examples in the `demo`
directory. You can browse on-line versions of these examples produced by the
png, svg, and canvas terminals at
^ <a href="http://gnuplot.info/demos/">
http://gnuplot.info/demos
^ </a>
The commands that produced each demo plot are shown next to the plot, and
the corresponding gnuplot script can be downloaded to serve as a model for
generating similar plots.
2 Batch/Interactive Operation
?batch/interactive
`Gnuplot` may be executed in either batch or interactive modes, and the two
may even be mixed together on many systems.
Any command-line arguments are assumed to be either program options
(see command-line-options) or names of files containing `gnuplot` commands.
Each file or command string will be executed in the order specified.
The special filename "-" is indicates that commands are to be read from stdin.
`Gnuplot` exits after the last file is processed. If no load files and no
command strings are specified, `gnuplot` accepts interactive input from stdin.
3 command line options
?command-line-options
?batch/interactive command-line-options
Gnuplot accepts the following options on the command line
-V, --version
-h, --help
-p --persist
-d --default-settings
-s --slow
-e "command1; command2; ..."
-c scriptfile ARG1 ARG2 ...
-p tells the program not to close any remaining interactive plot windows
when the program exits.
-d tells the program not to execute any private or system initialization
(see `initialization`).
-s tells the program to wait for slow font initialization on startup.
Otherwise it prints an error and continues with bad font metrics.
-e "command" tells gnuplot to execute that single command before continuing.
-c is equivalent to -e "call scriptfile ARG1 ARG2 ...". See `call`.
3 Examples
?batch/interactive examples
To launch an interactive session:
gnuplot
To launch a batch session using two command files "input1" and "input2":
gnuplot input1 input2
To launch an interactive session after an initialization file "header" and
followed by another command file "trailer":
gnuplot header - trailer
To give `gnuplot` commands directly in the command line, using the "-persist"
option so that the plot remains on the screen afterwards:
gnuplot -persist -e "set title 'Sine curve'; plot sin(x)"
To set user-defined variables a and s prior to executing commands from a file:
gnuplot -e "a=2; s='file.png'" input.gpl
2 Canvas size
?canvas size
?canvas
?set term size
This documentation uses the term "canvas" to mean the full drawing area
available for positioning the plot and associated elements like labels,
titles, key, etc. NB: For information about the HTML5 canvas terminal
see `set term canvas`.
In earlier versions of gnuplot, some terminal types used the values from
`set size` to control also the size of the output canvas; others did not.
The use of 'set size' for this purpose was deprecated in version 4.
Almost all terminals now behave as follows:
`set term <terminal_type> size <XX>, <YY>` controls the size of the output
file, or "canvas". By default, the plot will fill this canvas.
`set size <XX>, <YY>` scales the plot itself relative to the size of the
canvas. Scale values less than 1 will cause the plot to not fill the entire
canvas. Scale values larger than 1 will cause only a portion of the plot to
fit on the canvas. Please be aware that setting scale values larger than 1
may cause problems.
Example:
set size 0.5, 0.5
set term png size 600, 400
set output "figure.png"
plot "data" with lines
These commands produce an output file "figure.png" that is 600 pixels
wide and 400 pixels tall. The plot will fill the lower left quarter of this
canvas. This is consistent with the way multiplot mode has always worked.
2 Command-line-editing
?line-editing
?editing
?command-line-editing
Command-line editing and command history are supported using either an
external gnu readline library, an external BSD libedit library, or a
built-in equivalent. This choice is a configuration option at the time
gnuplot is built.
The editing commands of the built-in version are given below. Please note that
the action of the DEL key is system-dependent. The gnu readline and BSD libedit
libraries have their own documentation.
@start table - first is interactive cleartext form
`Line-editing`:
^B moves back a single character.
^F moves forward a single character.
^A moves to the beginning of the line.
^E moves to the end of the line.
^H deletes the previous character.
DEL deletes the current character.
^D deletes current character, sends EOF if the line is empty.
^K deletes from current position to the end of line.
^L redraws line in case it gets trashed.
^U deletes the entire line.
^W deletes previous word.
^V inhibits the interpretation of the following key as editing command.
TAB performs filename-completion.
`History`:
^P moves back through history.
^N moves forward through history.
^R starts a backward-search.
#\begin{tabular}{|cl|} \hline
#\multicolumn{2}{|c|}{Command-line Editing Commands} \\ \hline \hline
#Character & Function \\ \hline
# & \multicolumn{1}{|c|}{Line Editing}\\ \cline{2-2}
#\verb~^B~ & move back a single character.\\
#\verb~^F~ & move forward a single character.\\
#\verb~^A~ & move to the beginning of the line.\\
#\verb~^E~ & move to the end of the line.\\
#\verb~^H~ & delete the previous character.\\
#\verb~DEL~ & delete the current character.\\
#\verb~^D~ & delete current character. EOF if line is empty.\\
#\verb~^K~ & delete from current position to the end of line.\\
#\verb~^L~ & redraw line in case it gets trashed.\\
#\verb~^U~ & delete the entire line. \\
#\verb~^W~ & delete previous word. \\
#\verb~^V~ & inhibits the interpretation of the following key as editing command. \\
#\verb~TAB~ & performs filename-completion. \\ \hline
# & \multicolumn{1}{|c|}{History} \\ \cline{2-2}
#\verb~^P~ & move back through history.\\
#\verb~^N~ & move forward through history.\\
#\verb~^R~ & starts a backward-search.\\
%c l .
%Character@Function
%_
%@Line Editing
%^B@move back a single character.
%^F@move forward a single character.
%^A@move to the beginning of the line.
%^E@move to the end of the line.
%^H@delete the previous character.
%DEL@delete the current character.
%^D@delete current character. EOF if line is empty.
%^K@delete from current position to the end of line.
%^L@redraw line in case it gets trashed.
%^U@delete the entire line.
%^W@delete previous word.
%_
%^V@inhibits the interpretation of the following key as editing command.
%TAB@performs filename-completion.
%_
%@History
%^P@move back through history.
%^N@move forward through history.
%^R@starts a backward-search.
@end table
^<table align="center" border="1" rules="groups" frame="hsides" cellpadding="3">
^<colgroup>
^ <col align="center">
^ <col align="left">
^</colgroup>
^<thead>
^<tr> <th>Character</th> <th>Function</th></tr>
^</thead>
^<tbody>
^<tr> <td></td> <th>Line Editing</th></tr>
^<tr> <td><tt>^B</tt></td> <td>move back a single character.</td></tr>
^<tr> <td><tt>^F</tt></td> <td>move forward a single character.</td></tr>
^<tr> <td><tt>^A</tt></td> <td>move to the beginning of the line.</td></tr>
^<tr> <td><tt>^E</tt></td> <td>move to the end of the line.</td></tr>
^<tr> <td><tt>^H</tt></td> <td>delete the previous character.</td></tr>
^<tr> <td><tt>DEL</tt></td> <td>delete the current character.</td></tr>
^<tr> <td><tt>^D</tt></td> <td>delete current character. EOF if line is empty</td></tr>
^<tr> <td><tt>^K</tt></td> <td>delete from current position to the end of line.</td></tr>
^<tr> <td><tt>^L</tt></td> <td>redraw line in case it gets trashed.</td></tr>
^<tr> <td><tt>^U</tt></td> <td>delete the entire line.</td></tr>
^<tr> <td><tt>^W</tt></td> <td>delete previous word.</td></tr>
^<tr> <td><tt>^V</tt></td> <td>inhibits the interpretation of the following key as editing command.</td></tr>
^<tr> <td><tt>TAB</tt></td> <td>performs filename-completion.</td></tr>
^</tbody>
^<tbody>
^<tr> <th></th> <th>History</th></tr>
^<tr> <td><tt>^P</tt></td> <td>move back through history.</td></tr>
^<tr> <td><tt>^N</tt></td> <td>move forward through history.</td></tr>
^<tr> <td><tt>^R</tt></td> <td>starts a backward-search.</td></tr>
^</tbody>
^</table>
2 Comments
?comments
The comment character `#` may appear almost anywhere in a command line, and
`gnuplot` will ignore the rest of that line. A `#` does not have this effect
inside a quoted string. Note that if a commented line ends in '\' then the
subsequent line is also treated as part of the comment.
See also `set datafile commentschars` for specifying a comment character for
data files.
2 Coordinates
?coordinates
=axes
The commands `set arrow`, `set key`, `set label` and `set object` allow you
to draw something at an arbitrary position on the graph. This position is
specified by the syntax:
{<system>} <x>, {<system>} <y> {,{<system>} <z>}
Each <system> can either be `first`, `second`, `polar`, `graph`, `screen`, or
`character`.
`first` places the x, y, or z coordinate in the system defined by the left
and bottom axes; `second` places it in the system defined by the x2,y2 axes
(top and right); `graph` specifies the area within the axes---0,0 is bottom
left and 1,1 is top right (for splot, 0,0,0 is bottom left of plotting area;
use negative z to get to the base---see `set xyplane`); `screen`
specifies the screen area (the entire area---not just the portion selected by
`set size`), with 0,0 at bottom left and 1,1 at top right. `character`
coordinates are used primarily for offsets, not absolute positions.
The `character` vertical and horizontal size depend on the current font.
`polar` causes the first two values to be interpreted as angle theta and radius
r rather than as x and y. This could be used, for example, to place labels on
a 2D plot in polar coordinates or a 3D plot in cylindrical coordinates.
If the coordinate system for x is not specified, `first` is used. If the
system for y is not specified, the one used for x is adopted.
In some cases, the given coordinate is not an absolute position but a
relative value (e.g., the second position in `set arrow` ... `rto`). In
most cases, the given value serves as difference to the first position.
If the given coordinate belongs to a log-scaled axis, a relative value is
interpreted as multiplier. For example,
set logscale x
set arrow 100,5 rto 10,2
plots an arrow from position 100,5 to position 1000,7 since the x axis is
logarithmic while the y axis is linear.
If one (or more) axis is timeseries, the appropriate coordinate should
be given as a quoted time string according to the `timefmt` format string.
See `set xdata` and `set timefmt`. `Gnuplot` will also accept an integer
expression, which will be interpreted as seconds relative to 1 January 1970.
2 Datastrings
?datastrings
Data files may contain string data consisting of either an arbitrary string
of printable characters containing no whitespace or an arbitrary string of
characters, possibly including whitespace, delimited by double quotes.
The following line from a datafile is interpreted to contain four
columns, with a text field in column 3:
1.000 2.000 "Third column is all of this text" 4.00
Text fields can be positioned within a 2-D or 3-D plot using the commands:
plot 'datafile' using 1:2:4 with labels
splot 'datafile' using 1:2:3:4 with labels
A column of text data can also be used to label the ticmarks along one or more
of the plot axes. The example below plots a line through a series of points
with (X,Y) coordinates taken from columns 3 and 4 of the input datafile.
However, rather than generating regularly spaced tics along the x axis
labeled numerically, gnuplot will position a tic mark along the x axis at the
X coordinate of each point and label the tic mark with text taken from column
1 of the input datafile.
set xtics
plot 'datafile' using 3:4:xticlabels(1) with linespoints
=columnheader
There is also an option that will interpret the first entry in a column of
input data (i.e. the column heading) as a text field, and use it as the key
title for data plotted from that column. The example given below will use the
first entry in column 2 to generate a title in the key box, while processing
the remainder of columns 2 and 4 to draw the required line:
plot 'datafile' using 1:(f($2)/$4) with lines title columnhead(2)
Another example:
plot for [i=2:6] 'datafile' using i title "Results for ".columnhead(i)
This use of column headings is automated by `set datafile columnheaders` or
`set key autotitle columnhead`.
See `labels`, `using xticlabels`, `plot title`, `using`, `key autotitle`.
2 Enhanced text mode
?enhanced text
?enhanced
?text_markup
?markup
?bold
?italic
Many terminal types support an enhanced text mode in which additional
formatting information is embedded in the text string. For example, "x^2"
will write x-squared as we are used to seeing it, with a superscript 2.
This mode is selected by default when you set the terminal, but may be
toggled afterward using "set termoption [no]enhanced", or by marking
individual strings as in "set label 'x_2' noenhanced".
@start table - first is interactive cleartext form
Control Examples Explanation
^ a^x superscript
_ a_x subscript
@ @x or a@^b_{cd} phantom box (occupies no width)
& &{space} inserts space of specified length
~ ~a{.8-} overprints '-' on 'a', raised by .8
times the current fontsize
{/Times abc} print abc in font Times at current size
{/Times*2 abc} print abc in font Times at twice current size
{/Times:Italic abc} print abc in font Times with style italic
{/Arial:Bold=20 abc} print abc in boldface Arial font size 20
\U+ \U+221E Unicode point U+221E (INFINITY)
#\begin{tabular}{|clll|} \hline
#\multicolumn{4}{|c|}{Enhanced Text Control Codes} \\ \hline
#Control & Example & Result & Explanation \\ \hline
#\verb~^~ & \verb~a^x~ & $a^x$ & superscript\\
#\verb~_~ & \verb~a_x~ & $a_x$ & subscript\\
#\verb~@~ & \verb~a@^b_{cd}~ & $a^b_{cd}$ &phantom box (occupies no width)\\
#\verb~&~ & \verb~d&{space}b~ & d\verb*+ +b & inserts space of specified length\\
#\verb|~| & \verb|~a{.8-}| & $\tilde{a}$ & overprints '-' on 'a', raised by .8\\
#\verb~ ~ & \verb~ ~ & ~ ~ & times the current fontsize\\
#\verb| | & \verb|{/Times abc}| & {\rm abc} & print abc in font Times at current size\\
#\verb| | & \verb|{/Times*2 abc}| & \Large{\rm abc} & print abc in font Times at twice current size\\
#\verb| | & \verb|{/Times:Italic abc}| & {\it abc} & print abc in font Times with style italic\\
#\verb| | & \verb|{/Arial:Bold=20 abc}| & \Large\textsf{\textbf{abc}} & print abc in boldface Arial font size 20\\
#\verb|\U+| & \verb|\U+221E| & $\infty$ & Unicode point U+221E INFINITY\\
%c c l .
C ugly - doc2ms uses @ for column separator, but here we
C need @ in table, so end and restart the table !
%.TE