Colors gnuplot条件填充颜色

Colors gnuplot条件填充颜色,colors,conditional,gnuplot,Colors,Conditional,Gnuplot,gnuplot的新成员。可能是一个简单的问题,但请帮忙 我正在绘制一个叠加直方图,每个类别有5个部分(来自文件的第3-7列)。根据第二列数据(0或1)中的变量,各部分的颜色为黑色、绿色、黄色、品红色、红色或分别为红色、品红色、黄色、绿色、黑色。我一直在尝试对这项工作进行修改: plot 'themesdat.txt' u 3 not lt rgb ($2?0xff5050:0x808080),\ '' u 4 not lt rgb ($2?0x966496:0x00ff66),\ '' u

gnuplot的新成员。可能是一个简单的问题,但请帮忙

我正在绘制一个叠加直方图,每个类别有5个部分(来自文件的第3-7列)。根据第二列数据(0或1)中的变量,各部分的颜色为黑色、绿色、黄色、品红色、红色或分别为红色、品红色、黄色、绿色、黑色。我一直在尝试对这项工作进行修改:

plot 'themesdat.txt' u 3 not lt rgb ($2?0xff5050:0x808080),\
 '' u 4 not lt rgb ($2?0x966496:0x00ff66),\
 '' u 5 not lt rgb 0xffff00,\
 '' u 6 not lt rgb ($2?0x00ff66:0x966496"),\
 '' u 7 :xticlabels(1) not lt rgb ($2?0x808080:0xff5050)
条件生成未定义的值错误。正如我所说,可能是一个简单的问题,但我被卡住了

编辑:数据文件的示例(前6行):-

#title band1, band2, band3, band4, band5, labelx, label1, ... label5
#band colours: ff5050¸966496, ffff00, 00ff66, 808080 (reversed for 1,7,8,11,12,16,7,18,19)
Satisfaction 1 43 15 0 16 26 0 "severe problems" probs " " help? fine
Frustration 0 42 11 18 0 29 1 fine help problems "" "severe problems"
CopingAbility 1 47 13 7 11 22 2 "severe problems" probs " " help? fine
Category 1 0 0 0 0 0 3 "" "" "" "" ""
进一步编辑:我认为这可能是不可能的-使用数据文件中的一列来改变颜色。即使是一个简单的结构,rgb(2美元),似乎也不起作用


如果有人不知道

如果我理解正确,您可以尝试以下方法之一,例如。你也可以在这里找到解释

set terminal pngcairo  size 960,600
set output "conditional_fill.png"

datafile="themesdat.txt"
set yrange [0:100]

set key out
set style data histograms
set style histogram rowstacked
set boxwidth 0.8 relative
set style fill solid 1.0 border -1

set style line  3 lt 1 lc rgb "black"
set style line  4 lt 1 lc rgb "green"
set style line  5 lt 1 lc rgb "yellow" 
set style line  6 lt 1 lc rgb "magenta"
set style line  7 lt 1 lc rgb "red"

set style line 13 lt 1 lc rgb "red"
set style line 14 lt 1 lc rgb "magenta"
set style line 15 lt 1 lc rgb "yellow"
set style line 16 lt 1 lc rgb "green"
set style line 17 lt 1 lc rgb "black" 

color(x,y) = 10*x + y

stats datafile u 2 nooutput
n = STATS_records

set multiplot
do for [i=0:n-1] {
   plot datafile u (0):xticlabels(1) notitle,\
        newhistogram "" at i, \
              "" every ::i::i u (style = color($2, 3), 0) notitle,  \
              "" every ::i::i u 3 ls style title "severe problems", \
              "" every ::i::i u (style = color($2, 4), 0) notitle,  \
              "" every ::i::i u 4 ls style title "probs",           \
              "" every ::i::i u (style = color($2, 5), 0) notitle,  \
              "" every ::i::i u 5 ls style title " ",               \
              "" every ::i::i u (style = color($2, 6), 0) notitle,  \
              "" every ::i::i u 6 ls style title "help?",           \
              "" every ::i::i u (style = color($2, 7), 0) notitle,  \
              "" every ::i::i u 7 ls style title "fine"
}
unset multiplot
结果是: