#! /usr/bin/env gnuplot set terminal postscript eps color # Default png size: 640x480 # Default postcript size: 10inx7in set output "cv.zscores.pmf.2.eps" set bmargin 0 set lmargin 0 set tmargin 0 set rmargin 0 set format x "" set format y "" #set title "z-score distribution" ,-1 #set xlabel "z-score" ,1 #set ylabel "fraction" 1.5 # set key bottom right set key off set xrange [-3.0:8.0] set yrange [-0.4:0.4] set size 2.0/10,1.5/7 plot \ "cv.zscores.histogram.-3.00_8.00_0.50.site" \ title "site" with boxes fill solid 1, \ "cv.zscores.histogram.-3.00_8.00_0.50.bg" \ using 1:(-$2) title "bg" with boxes fill pattern 6, \ 0 \ notitle with lines lt -1 system "convert -density 150 cv.zscores.pmf.2.eps cv.zscores.pmf.2.png" set output "cv.zscores.roc.2.eps" #set title "z-score distribution" ,-1 #set xlabel "False positive rate" ,1 #set ylabel "True positive rate" 1.5 set xrange [0.0:1.0] set yrange [0.0:1.0] set size square 1.5/10,1.5/7 set key off plot \ "cv.zscores.histogram.-3.00_8.00_0.50" \ using 2:3 title "model" with linespoints pt 6, \ x \ title "random" with lines lt 3 system "convert -density 150 cv.zscores.roc.2.eps cv.zscores.roc.2.png"