我正在尝试使用 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发布的。