Gnuplot-Plotting only colorbox

时间:2016-06-11 08:50:31

标签: gnuplot colorbox

我正在使用Gnuplot绘制几张热图。但是,我并不是在Gnuplot中使用群体情节,因为我决定在Latex中使用个别热图获得更好的效果。我现在需要的Gnuplot是一个只有colorbox的情节/数字(除了colorbox之外)。在Gnuplot有没有办法做到这一点?

1 个答案:

答案 0 :(得分:3)

EG。如果你的热图是5-12:

unset key
set view map
set style data pm3d
set style function pm3d
set xtics  norangelimit 1
unset ytics
unset ztics
set title "Colorbox for heatmaps" 
set xrange [ 5.0000 : 12.0000 ] noreverse nowriteback
unset colorbox
splot (x-5)/(12-5)

enter image description here

或者如果你想要它是垂直的:

set size ratio 3
unset key
set view map
set style data pm3d
set style function pm3d
unset xtics
set ytics norangelimit 1
unset ztics
set title "Colorbox for heatmaps" 
set yrange [ 5.0000 : 12.0000 ] noreverse nowriteback
unset colorbox
splot (y-5)/(12-5)

enter image description here