Skip to content

Instantly share code, notes, and snippets.

@bitsgalore
Last active September 22, 2016 12:07
Show Gist options
  • Save bitsgalore/56b5695efd6f42965594 to your computer and use it in GitHub Desktop.
Save bitsgalore/56b5695efd6f42965594 to your computer and use it in GitHub Desktop.
Gnuplot histogram example
#!/gnuplot
#
# Histogram of compression ratio distribution
#
set terminal postscript enhanced landscape
set output "histogram.ps"
set size ratio 0.5
set key top right
set xlabel "Compression ratio"
set ylabel "Number of files"
set style fill solid 1.0 border -1
set datafile separator ","
binwidth=0.02 # Adjust according to distribution of values in data file
set boxwidth binwidth
bin(x,width)=width*floor(x/width) + binwidth/2
plot "./test_derived.csv" using (bin($2,binwidth)):(1.0) smooth freq with boxes t ""
# EOF
i:/testJohan/00001_master_lr.jp2 20.17
i:/testJohan/00002_master_lr.jp2 20.16
i:/testJohan/00004_master_lr.jp2 20.04
i:/testJohan/00005_master_lr.jp2 20.08
i:/testJohan/00007_master_lr.jp2 20.1
i:/testJohan/00008_master_lr.jp2 20.09
i:/testJohan/00009_master_lr.jp2 20.1
i:/testJohan/00010_master_lr.jp2 20.12
i:/testJohan/00013_master_lr.jp2 20.03
i:/testJohan/00014_master_lr.jp2 19.99
i:/testJohan/00017_master_lr.jp2 20.12
i:/testJohan/00019_master_lr.jp2 20.07
i:/testJohan/00021_master_lr.jp2 20.04
i:/testJohan/00022_master_lr.jp2 20.15
i:/testJohan/00023_master_lr.jp2 20.06
i:/testJohan/00025_master_lr.jp2 20.17
i:/testJohan/00026_master_lr.jp2 20.05
i:/testJohan/00027_master_lr.jp2 20.11
i:/testJohan/00028_master_lr.jp2 20.11
i:/testJohan/00029_master_lr.jp2 20.07
i:/testJohan/00030_master_lr.jp2 20.11
i:/testJohan/00033_master_lr.jp2 20.0
i:/testJohan/00036_master_lr.jp2 20.08
i:/testJohan/00038_master_lr.jp2 20.02
i:/testJohan/00039_master_lr.jp2 20.02
i:/testJohan/00040_master_lr.jp2 20.14
i:/testJohan/00041_master_lr.jp2 20.02
i:/testJohan/00042_master_lr.jp2 20.1
i:/testJohan/00044_master_lr.jp2 20.13
i:/testJohan/00045_master_lr.jp2 20.1
i:/testJohan/00046_master_lr.jp2 20.04
i:/testJohan/00048_master_lr.jp2 20.09
i:/testJohan/00049_master_lr.jp2 20.01
i:/testJohan/00050_master_lr.jp2 20.16
i:/testJohan/00051_master_lr.jp2 20.04
i:/testJohan/00053_master_lr.jp2 20.05
i:/testJohan/00055_master_lr.jp2 20.13
i:/testJohan/00056_master_lr.jp2 20.02
i:/testJohan/00057_master_lr.jp2 20.04
i:/testJohan/00058_master_lr.jp2 20.04
i:/testJohan/00059_master_lr.jp2 20.12
i:/testJohan/00061_master_lr.jp2 20.04
i:/testJohan/00062_master_lr.jp2 20.16
i:/testJohan/00063_master_lr.jp2 20.01
i:/testJohan/00064_master_lr.jp2 20.0
i:/testJohan/00065_master_lr.jp2 20.15
i:/testJohan/00067_master_lr.jp2 20.03
i:/testJohan/00068_master_lr.jp2 20.06
i:/testJohan/00069_master_lr.jp2 20.0
i:/testJohan/00070_master_lr.jp2 19.99
i:/testJohan/00071_master_lr.jp2 19.98
i:/testJohan/00072_master_lr.jp2 20.02
i:/testJohan/00073_master_lr.jp2 20.04
i:/testJohan/00074_master_lr.jp2 20.13
i:/testJohan/00075_master_lr.jp2 19.97
i:/testJohan/00076_master_lr.jp2 20.01
i:/testJohan/00077_master_lr.jp2 20.11
i:/testJohan/00078_master_lr.jp2 20.0
i:/testJohan/00079_master_lr.jp2 20.06
i:/testJohan/00080_master_lr.jp2 20.06
i:/testJohan/00081_master_lr.jp2 20.14
i:/testJohan/00082_master_lr.jp2 20.09
i:/testJohan/00083_master_lr.jp2 20.0
i:/testJohan/00084_master_lr.jp2 20.01
i:/testJohan/00086_master_lr.jp2 20.02
i:/testJohan/00087_master_lr.jp2 20.12
i:/testJohan/00088_master_lr.jp2 20.05
i:/testJohan/00089_master_lr.jp2 20.0
i:/testJohan/00090_master_lr.jp2 20.09
i:/testJohan/00091_master_lr.jp2 20.02
i:/testJohan/00092_master_lr.jp2 20.14
i:/testJohan/00093_master_lr.jp2 20.15
i:/testJohan/00094_master_lr.jp2 20.17
i:/testJohan/00095_master_lr.jp2 20.09
i:/testJohan/00096_master_lr.jp2 20.01
i:/testJohan/00097_master_lr.jp2 20.08
i:/testJohan/00098_master_lr.jp2 20.06
i:/testJohan/00099_master_lr.jp2 20.04
i:/testJohan/00100_master_lr.jp2 20.1
i:/testJohan/00101_master_lr.jp2 20.1
i:/testJohan/00102_master_lr.jp2 20.16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment