You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
reset
|
|
|
|
set term jpeg
|
|
set output "success.jpg"
|
|
|
|
set xlabel "Concurrency"
|
|
set ylabel "Success (RC=200) rate %"
|
|
|
|
set xrange [0:]
|
|
set yrange [0:110]
|
|
|
|
plot 'success.dat' using 1:2 title 'Success rate' linetype 1 linecolor 1 with linespoints
|