gpt4 book ai didi

Gnuplot 线条和关键颜色

转载 作者:行者123 更新时间:2023-12-02 16:39:21 24 4
gpt4 key购买 nike

我正在尝试使用 Gnuplot 创建折线图。每条线都由不同的颜色表示。我想要的是键的颜色与线条颜色相同。这就是我现在所拥有的,current version 。是否可以将文本“Line 2”设置为橙色,“Line 3”设置为红色等?

这是我在 gp 文件中编写的内容:

set xlabel'x-axis'; \
set xrange[0:25];\
set ylabel 'y-axis';\
set yrange [2:9];\
set key left top;
p 'test.dat' using 1:2 w linespoints lw 5 lc rgb '#aadc32' pt 17 title 'Line 1' ,\
'test.dat' using 1:9 w linespoints lw 5 lc 'orange' lt 1 title 'Line 2',\
'test.dat' using 1:6 w linespoints lw 5 lc 'red' lt 8 title 'Line 3',\
'test.dat' using 1:7 w linespoints lw 5 lc 'violet' pt 6 title 'Line 4',\'test.dat' using 1:8 w linespoints lw 5 lc rgb '#b5367a' pt 19 title 'Line 5',\
'test.dat' using 1:3 w linespoints lw 5 lc 'cyan' pt 9 title'Line 6',\
'test.dat' using 1:4 w linespoints lw 5 lc 'blue' lt 9 title 'Line 7',\
'test.dat' using 1:10 w linespoints lw 5 lc rgb '#1c1044' lt 5 title 'Line 8',\

非常感谢。

最佳答案

不幸的是没有。绘图标题无法(现在为 gp5.2pl0)识别“textcolor”说明符。

plot x lw 3 lc rgb "blue" title "x" tc rgb "blue" # doesn't work

您只能打印空(“”)绘图标题,并用彩色标签叠印它

set label 1 at 8,1 "bluetitle" tc rgb "blue"

当然,这需要对标签的位置进行一些调整。

您可以在 https://sourceforge.net/p/gnuplot/feature-requests/ 上提出功能请求

关于Gnuplot 线条和关键颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46246114/

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