1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
set title ""
unset key
#set tic scale 0
set mxtics
set mytics
set xtics out
set ytics out
set term png font "/usr/share/fonts/truetype/ttf-liberation/LiberationSans-Regular.ttf" 48 size 2102,1576 truecolor linewidth 3
set output "ifollowQplot.png"
# Color runs from white to green
set palette rgbformula 34,35,36
set cbrange [0:0.25]
set cblabel "Ratio 0 ~ 0.25"
unset cbtics
set xrange [1.5:40.5]
set yrange [1.5:40.5]
#set grid layerdefault front lt rgb "blue" lw 1
set view map
set xlabel "Following Q"
set ylabel "Leading Q"
plot 'ifQplot.dat' using 2:1:3 with image
|