File tree Expand file tree Collapse file tree 5 files changed +35
-1
lines changed Expand file tree Collapse file tree 5 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ all: install generate
7
7
8
8
install : img
9
9
10
- generate : img/line.png img/line-width3.png img/line-100.png img/line-avg.png img/line-sum.png img/lines.png img/points.png img/time.png img/date.png img/datetime.png img/headmap.png img/gantt.png
10
+ generate : img/line.png img/line-width3.png img/line-100.png img/line-avg.png img/line-sum.png img/lines.png img/points.png img/time.png img/date.png img/datetime.png img/headmap.png img/gantt.png img/yerrorbars.png
11
11
12
12
img :
13
13
$(MKDIR ) $@
Original file line number Diff line number Diff line change @@ -59,6 +59,13 @@ Using the same as *Default Line* but scaling y with 1/100 of the original value.
59
59
60
60
![ ] ( img/points.png )
61
61
62
+ ## Y Error Bars
63
+
64
+ - GNUPlot script: [ ` scripts/yerrorbars.gp ` ] ( scripts/yerrorbars.gp )
65
+ - Data file: [ ` data/yerrorbars.dat ` ] ( data/yerrorbars.dat )
66
+
67
+ ![ ] ( img/yerrorbars.png )
68
+
62
69
## Date
63
70
64
71
- GNUPlot script: [ ` scripts/date.gp ` ] ( scripts/date.gp )
Original file line number Diff line number Diff line change
1
+ 1 25 5
2
+ 2 20 1
3
+ 3 10 2
Original file line number Diff line number Diff line change
1
+
2
+ set title ' YErrorBars'
3
+ set xlabel ' x'
4
+ set ylabel ' y'
5
+
6
+ unset grid
7
+ set key below center horizontal noreverse enhanced autotitle box dashtype solid
8
+ set tics out
9
+ set border 3 front linetype black linewidth 1.0 dashtype solid
10
+
11
+ set xrange [0 : 5 ]
12
+ set xtics 1
13
+ set mxtics 1
14
+
15
+ set yrange [0 : 35 ]
16
+
17
+ set style line 1 linecolor rgb ' #0060ad' linetype 1 linewidth 2
18
+
19
+ set terminal png enhanced
20
+ set output ' img/yerrorbars.png'
21
+ plot ' data/yerrorbars.dat' with yerrorbars linestyle 1 title ' data'
22
+
23
+ # set terminal xterm
24
+ # replot
You can’t perform that action at this time.
0 commit comments