我正在尝试创建一个包含多个堆叠直方图的绘图,例如示例8 here。但对于我的数据,每个组都有相同的四个类别。
如何更改颜色和按键,使每个堆叠列的颜色变为红色,绿色,蓝色,粉红色?所以关键只有我正在绘制的4件事中的每一件都有一份?
这是我用来绘制的线:
plot newhistogram "1", 'addresses.dat' using 2:xtic(1) t 2, '' u 3 t 3, \
'' u 4 t 4, '' u 5 t 5, newhistogram "2", '' u 6 t 6, '' u 7 t 7, '' u 8 t 8,\
'' u 9 t 9
我的数据格式与我上面链接的示例格式相同:
Address PAL_Code BASH App Kernel PAL_Code BASH App Kernel
FFT 1 1 2 2 1 1 3 4
RADIX 1 2 3 4 1 2 4 5
LU 1 3 4 5 1 3 5 6
如果你能提供帮助,非常感谢你!
答案 0 :(得分:12)
使用newhistogram背后的lt
说明符来指定gnuplot应该使用的第一个颜色。我写了一个小脚本可能会做你想要的;)
set style data histogram
set style histogram rowstack gap 1
set style fill solid border -1
set boxwidth 0.9
set key autotitle columnheader
set key outside below center horizontal
plot newhistogram "1" lt 1, 'addresses.dat' u 2:xtic(1), '' u 3, '' u 4, '' u 5,\
newhistogram "2" lt 1, 'addresses.dat' u 6:xtic(1) notitle, '' u 7 notitle, \
'' u 8 notitle, '' u 9 notitle
希望有所帮助
Cherio
Woltan