使gnuplot从图表中删除不必要的文本

时间:2014-11-18 01:32:15

标签: gnuplot

这是我的剧本

set title "Frequency graph"
set xlabel "Words"
set ylabel "Frequency"

set boxwidth 0.5
set style fill solid
plot "gnuplot.data" using 1:3:xtic(2) with boxes


pause -1 "Hit any key to continue"

基于this回答。

结果如下: enter image description here 你看,我希望“gnuplot.data”使用1:3:xtic(2)和红色水平条消失。如何实现?

2 个答案:

答案 0 :(得分:1)

set key off命令之前插入一行plot

答案 1 :(得分:0)

你可以

plot "gnuplot.data" using 1:3:xtic(2) with boxes title ""