我正在尝试使用仅包含0或1的简单数据文件(.example
)来构建一种条形图。以下是.example
中包含的数据:
dest P1 P2 P3 P4 P5 NA
D1 0 1 1 0 0 0
D2 0 0 1 0 0 0
D3 0 1 0 1 0 0
""
GPV 1 1 1 1 1 1
这是我正在使用的代码:
set style histogram rowstacked title textcolor lt -1
set datafile missing 'nan'
set style data histograms
plot '.example' using ( $2==0 ? 1 : 0 ) ls 17 title 'NA', \
'' using ( $2==1 ? 1 : 0 ) ls 1, \
for [i=3:5] '.example' using ( column(i)==0 ? 1 : 0) ls 17 notitle, \
for [i=3:5] '' using ( column(i)==1 ? 1 : 0) ls i-1
其中最后两个命令迭代可能大量的 根据{{1}}的值堆叠白色或彩色框的列。为了在直方图中的不同列之间保持相同的颜色顺序,我需要将两个迭代合并为一个具有两个命令的迭代。
有可能吗?有关如何做到这一点的任何建议吗?
答案 0 :(得分:0)
您可以使用嵌套循环,我认为这是您想要实现的。您可以使用外部循环迭代大量列,并使用内部循环迭代两个选项(白色与彩色)for [i=3:5] for [j=0:1]
,并告诉gnuplot忽略列,如果其内容与j
使用1/0
的值(或使用技巧,对直方图有效,将其设置为0
,如您所做的那样):
set style histogram rowstacked title textcolor lt -1
set datafile missing 'nan'
set style data histograms
plot '.example' using ( $2==0 ? 1 : 0 ) ls 17 title 'NA', \
'' using ( $2==1 ? 1 : 0 ) ls 1, \
for [i=3:5] for [j=0:1] '.example' using ( column(i) == j ? 1 : 0 ) \
ls ( j == 0 ? 17 : i-1 ) notitle
上面的代码与您已经拥有的代码相同,只有j
的值允许切换样式,具体取决于您是否有0
或1
作为列的值