我在使用gnuplot绘制条形图时遇到问题。我在Windows 7上使用gnuplot版本4.6。我看到了错误消息";"预期
这是逻辑:
# bar graph
#set title "Programming language"
set xlabel "Programming"
set ylabel "Execution time"
set auto x
set yrange [0:120]
set style data histogram
set style histogram cluster gap 1
set style fill solid border -1
set boxwidth 0.9
set xtic scale 0
plot 'bar-graph.dat' using 2:xtic(1) title "Python" col fc rgb "#4671d5", '' u 3 title "Java" col fc rgb "#ff0000", '' u 4 title "C++" col fc rgb "#f36e00"
^
';' expected
以下是数据:
"Python" 50 70 66.5
"Java" 30 50 48
"C++" 10 20 14.8
我想绘制一个类似于Microsoft Excel的连接条形图。请让我知道我错过了什么。
谢谢, 阿南德
答案 0 :(得分:0)
您使用错误的语法设置线条颜色。没有col
选项。只需使用lc rgb "#467165"
:
plot 'bar-graph.dat' using 2:xtic(1) title "Python" lc rgb "#4671d5", '' u 3 title "Java" lc rgb "#ff0000", '' u 4 title "C++" lc rgb "#f36e00"
请给你的情节更有意义的标签。有一个' python'团队中有一个酒吧' python'不是自我解释。