带阴影线条的直方图(无彩条)

时间:2011-08-27 09:24:14

标签: gnuplot

我有一组使用直方图条绘制的数据。我希望条形图以阴影显示但不会填充红色,蓝色或任何其他颜色的字符串。样本数据如下:

1 23 2 9 13
2 25 5 7 12
3 26 5 3 13
4 20 6 8 5
5 23 5 12 15
6 23 5 12 11
7 22 9 12 5
8 24 16 5 8
9 23 2 12 10
10 23 15 5 9

我也有示例代码,

 set terminal jpeg medium
 set output "histo.jpeg"
 set boxwidth 0.75 absolute
 set style fill solid 1.00 border -1
 set style histogram rowstacked
 set style data histograms
 set xtics 1000 nomirror
 set ytics 100 nomirror
 set mxtics 2
 set mytics 2
 set ytics 10
 set yrange [0:50]
 set ylabel "Total time"
 set xlabel "Session number"

 plot 'papa2.dat' using 3 t "Server", '' using 4 t "Client", '' using 5:xtic(1) t "Network"

但是当我使用它时,我会在直方图中得到充满颜色的条形图。

任何人都可以帮我解决如何用线条而不是颜色绘制图形的方法吗? 非常感谢提前。

(注意:我从互联网上获得了这些样本数据和代码)

1 个答案:

答案 0 :(得分:0)

我想知道你想要的是这个页面的第一个图中显示的内容:histograms.dem

如果是这种情况,您可以按照演示页面中的set style data linespoint进行操作,或者在使用plot命令时进行plot 'papa2.dat' using 3 t "Server" with line

请注意,gnuplot项目网站提供了更多演示脚本:Demo scripts for gnuplot 4.4