Skip to content
Permalink
be20fa50ee
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
13 lines (12 sloc) 534 Bytes
# The following are the most basic commands used to produce the gnuplots that can then be saved as PDFs
# Note: This is for line graphs NOT box ones
set size ratio 0.6
set xlabel "X-Axis Value"
unset key
set ytics nomirror
set xtics nomirror
set logscale x 2
set xtics ("1" 1, "32" 32, "1024" 1024, "32768" 32768, "1s" 1e6, "10s" 1e7, "100s" 1e8)
plot "-" with lines
# For Bytes
set xtics ("1" 1, "32" 32, "1K" 1024, "8K" 8192, "16K" 16384, "32K" 32768, "256K" 262144, "512K" 524288, "1M" 1048576, "32M" 33554432, "512M" 536870912)