Gnuplot:多个堆叠直方图,每组使用相同的键

发布于 2024-10-28 03:46:21 字数 682 浏览 1 评论 0原文

我正在尝试创建一个具有多个堆叠直方图的绘图,如示例 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.

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲凉≈ 2024-11-04 03:46:21

使用 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 有帮助
沃尔坦

use the ltspecifier behind newhistogram in order to specify the first color gnuplot should use. I wrote a little script that might does what you want;)

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

Hope that helps

Cherio
Woltan

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文