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