-
Notifications
You must be signed in to change notification settings - Fork 15
/
gnuplotps.dem
63 lines (56 loc) · 1.65 KB
/
gnuplotps.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
60
61
62
#
# $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 terminal postscript
set output "gnu_wol.ps"
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
#
# $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 terminal postscript
set output "gnu_rwol.ps"
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
#
# $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"
set terminal postscript
set output "gnu_rol.ps"
plot 'rol.dat' using 1:2 title "Latency Plot" with lines
#
# $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 terminal postscript
set output "gnu_rrol.ps"
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