plot data_file using 1:2 with box fs solid title ""
我正在使用上面的命令在 gnuplot 中绘制条形图。但是生成的图是一种连续的阶梯图,其中每个框的宽度非常高。
上面的说法有什么问题??在 gnuplot 中绘制条形图的首选方法是什么?
按照这个链接
data.csv 是
"MCU", 1.8
"Radio Tx", 19.5
"Radio Rx", 21.8
"Flash READ", 4
"Flash WRITE", 20
而脚本的内容应该是(gnuplot.script)
set boxwidth 1 relative
set style data histograms
set style fill solid 1.0 border -1
set datafile separator ","
plot 'data.csv' using 2:xticlabels(1) notitle
set terminal png truecolor font small size 600,500
set output 'image1.png'
replot
然后
$ gnuplot gnuplot.script