gpt4 book ai didi

gnuplot 文本调色板

转载 作者:行者123 更新时间:2023-12-02 01:59:47 25 4
gpt4 key购买 nike

我正在尝试在 gnuplot 中设置标签的 textcolor 属性以通过调色板进行过渡。
更准确地说,我希望标签的每个字母(比如 “Number of Connections”)具有不同的颜色,但遵循我指定的调色板。
我尝试使用以下方法,但它失败了,仅使用字符串范围中间的颜色。

set palette model RGB defined ( \
0 '#F46D43',\
1 '#FDAE61',\
2 '#FEE08B',\
3 '#E6F598',\
4 '#ABDDA4',\
5 '#66C2A5' )
set y2label "Number of Connections" textcolor palette

最佳答案

不幸的是,gnuplot 只能为整个 字符串"Number of Connections" 着色。您可以使用额外的 frac option 影响颜色.
但是,这里有一种方法可以实现您想要的。不过,它涉及一些手动设置,正如我将在下面解释的那样:

# define the location of your plot:
bm = 0.15
lm = 0.12
rm = 0.75
tm = 0.90

# letter spacing - play with this as needed:
STRDIST = 0.03

# set up the plot window:
set lmargin at screen lm
set rmargin at screen rm
set bmargin at screen bm
set tmargin at screen tm

# place the colorbar in a defined location:
set colorbox vertical user origin rm+0.1,0.15 size .05,tm-bm

# define your palette:
set palette model RGB defined ( \
0 '#F46D43',\
1 '#FDAE61',\
2 '#FEE08B',\
3 '#E6F598',\
4 '#ABDDA4',\
5 '#66C2A5' )

# your label
LABEL = "Number of Connections"
# the 'length' of LABEL, unfortunately counted manually:
LEN_LABEL = 21.0 # IMPORTANT, declare as float

# use a loop to individually place each char of the string on the plot:
do for [i=1:LEN_LABEL]{\
set label i LABEL[i:i] at screen 0.8,bm+((i-1.)*STRDIST) \
rotate by 90 textcolor palette frac i/LEN_LABEL\
}

# dummy function plot (so that there's something to see):
plot '+' using ($1):(sin($1)):(0.5*(1.0+sin($1))) w l lw 3 lc pal not

发生了什么:

  1. 定义绘图和颜色条的位置:这样您就可以确切地知道它们的位置,并可以准确地放置“伪”标签。
  2. 变量STRDIST 用于分隔各个字母。这很笨拙,但你明白了要点。玩它可以取得不错的效果。
  3. 不幸的是,gnuplot 似乎无法计算字符串的长度,所以我硬连接了它,LEN_LABEL
  4. 使用 do for 循环将标签字符串的每个字母放在绘图上,使用附加的 frac 选项从调色板中分配颜色。 frac 0.0 是调色板上最低的颜色,frac 1.0 是调色板上“最高”的颜色。在这里,我们利用循环计数器从调色板中给出均匀间隔的颜色。 注意:这就是为什么将 LEN_LABEL 声明为 float 而不是整数或除最后一次迭代将导致 frac 0 以外的所有内容很重要的原因。
  5. plot '+' ... 命令借自 this site .

复制/粘贴上述示例时得到的图如下所示:

colorful label

使用“标签”的起点和 STRDIST 来生成/放置您喜欢的标签。

关于gnuplot 文本调色板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17809917/

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