-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgnuplot.dem
60 lines (52 loc) · 1.59 KB
/
gnuplot.dem
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
#
# $Id: Plot of latency versus offset in a file
#
# Requires data file "wol.dat" from this directory,
# so change current working directory to this directory before running.
#
set title "File system write latency "
set autoscale x
set xtics
set xlabel "Offset in file (KB)"
set ylabel "Latency in Microseconds"
plot 'wol.dat' using 1:2 title "Latency Plot" with lines
pause -1 "Hit return to continue"
#
# $Id: Plot of latency versus offset in a file
#
# Requires data file "rwol.dat" from this directory,
# so change current working directory to this directory before running.
#
set title "File system re-write latency "
set autoscale x
set xtics
set xlabel "Offset in file (KB)"
set ylabel "Latency in Microseconds"
plot 'rwol.dat' using 1:2 title "Latency Plot" with lines
pause -1 "Hit return to continue"
#
# $Id: Plot of latency versus offset in a file
#
# Requires data file "rol.dat" from this directory,
# so change current working directory to this directory before running.
#
set title "File system read latency "
set autoscale x
set xtics
set xlabel "Offset in file (KB)"
set ylabel "Latency in Microseconds"
plot 'rol.dat' using 1:2 title "Latency Plot" with lines
pause -1 "Hit return to continue"
#
# $Id: Plot of latency versus offset in a file
#
# Requires data file "rrol.dat" from this directory,
# so change current working directory to this directory before running.
#
set title "File system re-read latency "
set autoscale x
set xtics
set xlabel "Offset in file (KB)"
set ylabel "Latency in Microseconds"
plot 'rrol.dat' using 1:2 title "Latency Plot" with lines
pause -1 "Hit return to continue"