0

2列のファイルがあります

9 5
10 3
11 0
12 25
13 50
14 80
etc

gnuplot を使用して棒グラフをプロットする最良の方法は何ですか? gnuplot で subprocess を使用するのが最善の方法ですか? 後でウェブサイトに掲載したいので、グラフは .pdf と png にするのが理想的です。

ご意見/アドバイスをいただければ幸いです。

4

1 に答える 1

1

gnuplotプロット スタイルを使用して棒グラフをプロットする方法の例を次に示します。with boxes

set terminal pngcairo size 1000,800 font ',12'
set output 'output.png'

set xlabel 'xlabel' font ',18'
set ylabel 'ylabel' font ',18'

set boxwidth 0.9 
set style fill solid 0.3

set offset 0.5, 0.5, 10, 0

plot 'data.txt' with boxes linewidth 3 title ''

あなたが示したデータを使用すると、次の出力画像が得られます。

ここに画像の説明を入力

于 2013-09-06T18:19:27.853 に答える