-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.plot
More file actions
45 lines (34 loc) · 1.35 KB
/
Copy pathgraph.plot
File metadata and controls
45 lines (34 loc) · 1.35 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
# SVG output
set terminal svg size 2520,800 dynamic font ",24" background rgb 'white'
#set title ARG1 font ",48"
set key outside bottom horizontal box center
# Identify the axes
#set xlabel "Runs"
#set ylabel "Value"
# The main data line
set style line 1 linecolor rgb '#0060ad' linetype 1 linewidth 3 \
pointtype 7 pointsize .5
# Minimum line
set style line 5 linecolor rgb '#ff2020' linetype 1 linewidth 2
# Maximum line
set style line 6 linecolor rgb '#20ff20' linetype 1 linewidth 2
# Style for mean line
set style line 2 linecolor rgb '#e41a1c' linetype 2 linewidth 2 dashtype 2
# Style for the moving mean
set style line 3 linecolor rgb '#4060a0' linetype 1 linewidth 2 dashtype 3
set grid
unset border
# Add Y margins above and below the auto-scaled plot area
# Syntax: set offset <left>, <right>, <top>, <bottom>
set offset 0, 0, graph 0.25, graph 0.05
# add a little margin below the plot to move out the key
set bmargin 5
set xtics rotate 1 out nomirror
set ytics out font ",24" nomirror
set format y "%.2s %c"
set datafile separator ";"
plot ARG1 using 1:6 with lines linestyle 3 title "25-round mean", \
ARG1 using 1:8 with lines linestyle 2 title "mean", \
ARG1 using 1:3 with lines linestyle 5 title "min", \
ARG1 using 1:5 with lines linestyle 6 title "max", \
ARG1 using 1:4:xticlabel(2) with linespoints linestyle 1 title "value"