| 1 |
set title 'Hello, world' # plot title |
| 2 |
set xlabel 'Time' # x-axis label |
| 3 |
set ylabel 'Distance' # y-axis label |
| 4 |
|
| 5 |
# labels |
| 6 |
set label "boiling point" at 10, 212 |
| 7 |
|
| 8 |
# key/legend |
| 9 |
set key top right |
| 10 |
set key box |
| 11 |
set key left bottom |
| 12 |
set key bmargin |
| 13 |
set key 0.01,100 |
| 14 |
|
| 15 |
set nokey # no key |
| 16 |
|
| 17 |
# arrow |
| 18 |
set arrow from 1,1 to 5,10 |
| 19 |
|
| 20 |
# From https://alvinalexander.com/technology/gnuplot-charts-graphs-examples/ |
| 21 |
|