Gnuplot:多个堆叠直方图,每组使用相同的键
我正在尝试创建一个具有多个堆叠直方图的绘图,如示例 8 此处。但对于我的数据来说,每组都有相同的四个类别。
如何更改颜色和键,以便每个颜色变为红色、绿色、蓝色、粉色堆积柱?那么我正在绘制的 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
如果您能提供帮助,非常感谢!
I am trying to create a plot with multiple stacked histograms like example 8 here. But for my data, each group has the same four categories.
How do I change the colors and the key so that colors go Red, Green, Blue, Pink for every stacked column? And so the key only has one copy each of the 4 things I am plotting?
Here is the line I'm using to plot:
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
My data is in the same format as the example I linked to above:
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
Thank you so much if you can help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 newhistogram 后面的 lt 说明符来指定 gnuplot 应使用的第一种颜色。我写了一个小脚本,可能会满足您的要求;)
希望对
Cherio 有帮助
沃尔坦
use the
lt
specifier behind newhistogram in order to specify the first color gnuplot should use. I wrote a little script that might does what you want;)Hope that helps
Cherio
Woltan