在gnuplot中绘制堆积条时出错

时间:2013-07-10 10:24:23

标签: gnuplot

我正在尝试使用gnuplot绘制堆积条形图。例如,我尝试使用下面的数据和gnuplot代码绘制堆积条形图:

数据是:

year foo bar rest
1900 20 10 20
2000 20 30 10
2100 20 10 10

gnuplot代码是:

#
# Stacked histograms
#
set term png size 300,300
set output 'stackedhisto.png'
#set title "Stacked histogram\nTotals"

# Where to put the legend
# and what it should contain
set key invert reverse Left outside
set key autotitle columnheader

set yrange [0:100]
set ylabel "total"

# Define plot style 'stacked histogram'
# with additional settings
set style data histogram
set style histogram rowstacked
set style fill solid border -1
set boxwidth 0.75

# We are plotting columns 2, 3 and 4 as y-values,
# the x-ticks are coming from column 1
plot 'stackedhisto.dat' using 2:xtic(1) \
    ,'' using 3 \
    ,'' using 4

当我执行上面的代码时,我得到一些错误,我不知道源代码是什么。错误如下:

./script-plot-total-stacked-bar.gnu: line 25: syntax error near unexpected token `('
./script-plot-total-stacked-bar.gnu: line 25: `plot 'stackedhisto.dat' using 2:xtic(1) \'

此错误阻止我绘制自己的数据。我在Ubuntu 11.10中使用gnuplot 4.6。 提前感谢任何帮助。 感谢

注意:事实上,这是在1发布的。

1 个答案:

答案 0 :(得分:0)

我可以更正这个脚本。有一个拼写错误。我在行

重新输入了连字符
plot 'stackedhisto.dat' using 2:xtic(1) \
    ,'' using 3 \
    ,'' using 4

抱歉错误。