Gnuplot:功能的条形图

时间:2013-01-05 18:19:56

标签: gnuplot bar-chart

与所有Gnuplot条形图示例中近99.9%不同,我没有数据文件,但我希望将其显示为条形图。

让我们以例如f(x)= x

为例

我想要一个bar char,它为0到20之间的每个x值创建一个bar(步长1)。

因此我使用了以下代码,但它不会创建20个条形图 - 它会创建更多(大约100个?)。

set xtic 1
set xrange [0:20]
set boxwidth 1
set style fill solid
f(x)=x
plot f(x) with boxes

如何使此条形图正常工作?

1 个答案:

答案 0 :(得分:4)

您需要set samples命令。尝试:

set xtic 1
set xrange [0:20]
set boxwidth 1
set style fill solid
f(x)=x
set samples 21
plot f(x) with boxes