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 "Connections"
|
|
set xrange [-5:105]
|
|
|
|
set ylabel "% 2XX"
|
|
set yrange [0:110]
|
|
|
|
plot 'success.dat' using 1:2 title '2XX'
|