【发布时间】:2012-08-15 01:39:57
【问题描述】:
我有一个看起来像这样的数据文件
#col 1 2 3 4 5 6 7
#bench #these are max and min values
#mark #bar1 #bar2 #for the prevoius 2 values
NOSHARE.2 43032 139412 100 45000 130000 140000
FALSE_SHARE.2 7035 24101 5000 7500 24100 25000
SHAREDVAR.2 11316 10248 10000 12000 10000 12000
我可以使用 gnuplot 生成一个图形,看起来像这样
我需要将最大值和最小值作为误差条添加到每个条形
这是我的 gnuplot 脚本
set output "truevsfalse.png"
set title " TRUE VS FALSE SHARING "
set boxwidth 0.9 absolute
set style fill solid 1.00 border lt -1
set key inside right top vertical Right noreverse noenhanced autotitles nobox
set style histogram clustered gap 5 title offset character 0, 0, 0
set datafile missing '-'
set style data histograms
set xtics border in scale 0,0 nomirror rotate by -45 offset character 0, 0, 0
set xtics norangelimit
set ylabel "NUMBER OF SHARING"
set xlabel "BENCHMARK"
plot 'truevsfalse.dat' using 2:xtic(1) title "true(synced and nonsynced)sharing (both vcpus)" , '' u 3 title "false sharing (both vcpus)"
我试过了
plot 'truevsfalse.dat' using($0- .05):2:4:5:xtic(1) with boxerrorbars title "true(synced and nonsynced)sharing (both vcpus)" , '' using ($0+0.25):3:6:7 with boxerrorbars title "false sharing (both vcpus)"
但是失败了,我要么只得到没有直方图条的误差条,要么尝试修改一点图像损坏。
我在做什么?
谢谢
【问题讨论】:
-
我可能已经回答了类似的问题。 (stackoverflow.com/questions/11718251/…)。是不是你想要的样子?