gnuplot来自不同数据文件的聚类直方图

时间:2013-09-19 19:46:20

标签: gnuplot histogram

所以,我有文件A和B,如:

# file A
# x  val
1     2
1.5   3
2     4

# file B
# x  val
1     3
1.5   5
2     7

如何在gnuplot中构建一个简单的聚类直方图,以便每个xtic在该点都有一个A和B值的条形图?

基本上,我想要这样的东西:

              B
              B
       B      B
       B     AB
 B    AB     AB
AB    AB     AB
AB    AB     AB
1     1.5     2

1 个答案:

答案 0 :(得分:2)

您可以通过以下方式实现此目的:

set style fill solid
plot [0.5:][0:10] 'fileA' u 2: xtic(1) with histogram, 'fileB' u 2: xtic(1) with histogram

enter image description here