gpt4 book ai didi

colors - gnuplot - 用不同的颜色为一些抽动或 Axis 号着色

转载 作者:行者123 更新时间:2023-12-01 03:40:45 27 4
gpt4 key购买 nike

我正在使用 gnuplot 生成一些 x Axis 范围从 0 到 20 的图。是否可以将某些抽动或 Axis 号的颜色设置为与标准黑色不同的颜色?

我只找到了一种用 set xtics textcolor rgb "red" 改变 x Axis 上所有数字颜色的方法。 .

我需要的是能够在 x=0,3,6,... 更改 tic 或数字的颜色红色,所有其他人都应该保持黑色。 gnuplot 可以实现吗?

最佳答案

tic 标记的颜色由边框颜色设置,因此可以执行以下操作:

reset
set multiplot

set xrange [-5:5]

set xtics -5,1,0 # these tic marks will show up in black (the default border color)
set yrange [] writeback # save auto-generated y range for later
plot sin(x)

set border 0 linecolor "red" # change border color, and turn off drawing of the border
set xtics 1,1,5 textcolor "blue" # these tic marks will show up in the new border color, and we can specify the color of the labels
unset ytics # we don't want to display the y tics again
set yrange restore # use same range for y axis as before

unset key
plot NaN

unset multiplot

enter image description here

此解决方案也使用 multiplot,但使用第二个 plot 仅绘制颜色与默认黑色不同的 tic 标记和标签。重要的是,两个图具有相同的范围和边距。

关于colors - gnuplot - 用不同的颜色为一些抽动或 Axis 号着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31116508/

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