gpt4 book ai didi

string - 将字符串添加到 gnuplot 自动标题

转载 作者:行者123 更新时间:2023-12-01 03:36:33 28 4
gpt4 key购买 nike

我正在使用 gnuplot 脚本命令 set key autotitle columnhead为我的数据制作标签。唯一的问题是,列头数据是数字,因此它本身并没有多大意义。

有没有办法向自动标题添加固定字符串,例如 "Year " + columnhead ,或者,给我的 key 一个标题?

最佳答案

使用 . 的字符串连接运营商 columnhead()适用于 gnuplot v4.6 ( documentation ):

set terminal pngcairo enhanced truecolor size 480,320 fontscale 0.8
set output 'autotitle.png'
set key left Left

plot for [i=2:4] 'data.txt' u 1:i w l t 'f(x) = '.columnhead(i)

gnuplot output

另外,是的,您可以为 key 设置标题,如下所示: set key title 'f(x)' .

输入文件 data.txt在这个例子中使用:
x 100x x^3 2^x
1 100 1 2
2 200 8 4
3 300 27 8
4 400 64 16
5 500 125 32
6 600 216 64
7 700 343 128
8 800 512 256
9 900 729 512
10 1000 1000 1024

关于string - 将字符串添加到 gnuplot 自动标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34250235/

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