2

在 gnuplot 中,我绘制了如下图:

gnuplot> set title "Performance analysis" font ", 16"
gnuplot> set xlabel "Array size" font ", 14"
gnuplot> set ylabel "Time, milliseconds" font ", 14"
gnuplot> set xrange [0:25]
gnuplot> set yrange [0:6300]
gnuplot> set xtics (5, 9, 11, 13, 15, 17, 19, 21, 23)
gnuplot> set ytics (88, 296, 433, 835, 1067, 1516, 2592, 3920, 6214)
gnuplot> set style line 1 linecolor rgb "blue"
gnuplot> plot "file.dat" using 1:2 title "Graph" with lines

很好,但是我的图表的线条颜色仍然是红色(默认),请你帮我将它设置为蓝色。

4

1 回答 1

7

您缺少 plot 命令的一个参数;尝试

plot "file.dat" using 1:2 title "Graph" with lines ls 1

ls 1告诉 gnuplot 使用线型 1。如果您不指定线型,​​它只会循环使用其默认值。当你在它的时候,你可以设置

set style data lines

在绘图之前。这样,gnuplot 将用线条绘制数据,您不必在每个绘图命令中指定它。但是,如果您只绘制一条线,则可以在一个命令中完成所有操作:

plot "file.dat" using 1:2 title "Graph" with lines lc rgb 'blue'
于 2012-10-11T15:20:54.177 回答