gpt4 book ai didi

linux - gnuplot 线型不想改变

转载 作者:IT王子 更新时间:2023-10-29 00:32:29 25 4
gpt4 key购买 nike

你能帮帮我吗?我想将一种线型更改为点线。我使用这些命令:

gnuplot> set terminal png size 750,210 nocrop butt font "/usr/share/fonts/truetype/ttf-liberation/LiberationSans-Regular.ttf" 8
gnuplot> set output "/root/data.png"
gnuplot> set xdata time
gnuplot> set timefmt "%Y-%m-%d"
gnuplot> set format x "%b %d"
gnuplot> set ylabel "item1"
gnuplot> set y2label "item2"
gnuplot> set y2tics
gnuplot> set datafile separator "|"
gnuplot> plot "/root/results.txt" using 1:2 title "item1" w lines lt 4, "/root/results.txt" using 1:3 title "item2" with lines

但我总是只得到品红色的颜色线。我使用了版本 4.6 补丁级别 0。感谢您的回复。

最佳答案

有几种方法可以使用set 命令更改线条颜色:

  1. 定义线条样式:

    set style line 1 linetype 1 linecolor 7
    set style line 2 linetype 1 linecolor rgb "#dd7700"
    plot x linestyle 1, x**2 linestyle 2

    您必须明确指定使用的线型。

  2. 如果未指定任何内容,请选择并增加 style 行而不是 type 行:

    set style line 1 linetype 1 linecolor 7
    set style line 2 linetype 1 linecolor rgb "#dd7700"
    set style increment user
    plot x, x**2
  3. 重新定义默认行type(4.6.0版本引入):

    set linetype 1 linecolor 7
    set linetype 2 linetype 1 linecolor rgb "magenta"
    plot x, x**2

    请注意,与线型不同,set linetype 的重新定义是持久的;它们不受 reset 的影响。要重置它们,您必须使用 set linetype 1 default

所以一个最小的绘图脚本看起来像:

reset
set terminal pngcairo dashed monochrome
set output "/root/data.png"
set xdata time
set timefmt "%Y-%m-%d"
set format x "%b %d"
set datafile separator "|"
set style data lines

plot "/root/results.txt" using 1:2 linetype 1, "" using 1:3 linetype 3

关于linux - gnuplot 线型不想改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21305572/

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