forked from contiki-os/contiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot-size
42 lines (37 loc) · 1.15 KB
/
plot-size
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
#set terminal x11 persist
#set terminal postscript "Helvetica" 6
set terminal pdf font "Helvetica,5" size 19cm,26cm
set output "size.pdf"
unset xlabel
set ylabel "Bytes"
set boxwidth 0.6
set style fill pattern
#unset xtics
#set key top left Left
set multiplot
set size 1, 0.20
set origin 0, 0.80
set xlabel "Total"
plot \
'size-data' index 0 using :2:xticlabels(1) with boxes title "ROM", \
'size-data' index 0 using :3:xticlabels(1) with boxes title "RAM"
set origin 0, 0.60
set xlabel "Core"
plot \
'size-data' index 1 using :2:xticlabels(1) with boxes title "ROM", \
'size-data' index 1 using :3:xticlabels(1) with boxes title "RAM"
set origin 0, 0.40
set xlabel "Other"
plot \
'size-data' index 3 using :2:xticlabels(1) with boxes title "ROM", \
'size-data' index 3 using :3:xticlabels(1) with boxes title "RAM"
set origin 0, 0.20
set xlabel "Rime"
plot \
'size-data' index 4 using :2:xticlabels(1) with boxes title "ROM", \
'size-data' index 4 using :3:xticlabels(1) with boxes title "RAM"
set origin 0, 0.00
set xlabel "Sky"
plot \
'size-data' index 5 using :2:xticlabels(1) with boxes title "ROM", \
'size-data' index 5 using :3:xticlabels(1) with boxes title "RAM"