aboutsummaryrefslogtreecommitdiff
path: root/graph.gnu
blob: e74408104cab41b6b8f624c7f8e7ea6dd16e3c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
set xlabel "logleaves"
set ylabel "avg time per operation (sec)"

set terminal eps

set output "graph_create.eps"

plot "results/final_data_create.txt" u 1:2 w lines title "Create";

set output "graph_modify.eps"

plot "results/final_data_modify.txt" u 1:2 w lines title "Modify";

set output "graph_retrieve.eps"

plot "results/final_data_retrieve.txt" u 1:2 w lines title "Retrieve";

set output "graph_modifyenc.eps"

plot "results/final_data_modifyenc.txt" u 1:2 w lines title "Modify (enc)";

set output "graph_retrieveenc.eps"

plot "results/final_data_retrieveenc.txt" u 1:2 w lines title "Retrieve (enc)";