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.
11 lines
291 B
11 lines
291 B
set datafile separator ','
|
|
set xlabel "Time";
|
|
set ylabel "Transactions per second";
|
|
set terminal png size 1280,1024
|
|
set output outfile
|
|
|
|
# Aggregate transactions over a second
|
|
binwidth=1000
|
|
bin(x,width)=width*floor(x/width)
|
|
|
|
plot dataset using (bin($1,binwidth)):(1.0) smooth freq with boxes
|
|
|