-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimulation
More file actions
24 lines (22 loc) · 901 Bytes
/
Copy pathsimulation
File metadata and controls
24 lines (22 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
reset
set xrange[0:60]
set yrange[0.5:1]
set pointsize 1.5
# set xtics 100,100,1000 rotate by -45
set xlabel "Node Degree" offset 0,0.5
set ylabel "Success rate" offset 1.5,0
set nologscale y
set nologscale x
#set key under nobox
#set key box
set key bottom right spacing 1 height 1
set size 1.0, 0.8
#set pointsize 1.5
set terminal postscript eps enh "Times-Roman" 18 color
#set terminal jpeg
set output "Simulation.eps"
plot "outWidget" using 1:2 title "two IR, Widget" with linespoints lt 3 pt 7 lw 3 ps 2,\
"outGreedy" using 1:2 title "two IR, Greedy" with linespoints lt 2 pt 8 lw 3 ps 2.5
# "lp_data3_oneforall" using 1:2 title "two IR, LP for all" with linespoints lt 1 lw 3 pt 3 linecolor rgb "red"
#plot "data_trans" using 1:2 title "transaction" with linespoints lt 3 pt 7 lw 3 ps 2,\
# "data_int" using 1:2 title "interest pay" with linespoints lt 2 pt 8 lw 3 ps 2.5