gpt4 book ai didi

gnuplot - 如何删除调色板颜色热图

转载 作者:行者123 更新时间:2023-12-04 00:46:26 25 4
gpt4 key购买 nike

是否可以删除热图调色板(右侧的小矩形)?

这是我的数据

    a       b       c   
1 181 80 121 10 34 20
2 18 20 17 20 13 20
3 12 20 5 30 20 20

这是我的gnuplot脚本
set term pos eps font 20
unset key
set nocbtics
set palette rgbformulae -7, 2, -7
set title "Faults"

set size 1, 0.5
set output 'heatmap2.eps'
YTICS="`awk 'BEGIN{getline}{printf "%s ",$1}' 'data2.dat'`"
XTICS="`head -1 'data2.dat'`"
set for [i=1:words(XTICS)] xtics ( word(XTICS,i) i-1 )
set for [i=1:words(YTICS)] ytics ( word(YTICS,i) i-1 )

set for [i=1:words(XTICS)] xtics ( word(XTICS,i) 2*i-1 )
plot "<awk '{$1=\"\"}1' 'data2.dat' | sed '1 d'" matrix every 2::1 w image, \
'' matrix using ($1+1):2:(sprintf('%d', $3)) every 2 with labels

我要删除调色板,因为我按数据百分比调整了绘图颜色。所以,我想我 table 右边的调色板现在已经被使用了。谢谢

最佳答案

那是colorbox。只需使用

unset colorbox

删除它。

关于gnuplot - 如何删除调色板颜色热图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24421947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com