forked from devdanzin/fusil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.sh
45 lines (34 loc) · 744 Bytes
/
graph.sh
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
#!/bin/sh
DATA=$1
OUTPUT=/tmp/graph.png
if [ "x$DATA" = "x" ]; then
echo "usage: $0 aggressivity.dat"
exit 1
fi
if [ ! -f "$DATA" ]; then
echo "File $DATA doesn't exit"
exit 1
fi
# Exit on error
set -e
cat <<EOF | gnuplot
# Output: 800x600 PNG file
set terminal png size 800, 600
set output '$OUTPUT'
# Title and labels
set title "Fusil aggressivity"
set xlabel "Session index"
# Scale axes
set autoscale
#set xrange [1:]
# Disable top and bottom borders
set border 2+8
# "linetype 3": use blue color
plot \
'$DATA' using 1:2 title 'score' \
with steps linewidth 2, \
'$DATA' using 1:3 title 'aggressivity' \
with steps linewidth 3 linetype 3
EOF
echo "Graphic generated: $OUTPUT"
display $OUTPUT