7

私はかなり長い間 GNU-plot を使用してきましたが、GNU-plot が生成するグラフの品質が気に入らなかったのです。

gnu-plot で簡単にグラフをプロットできることに感心していますが、結果として得られるグラフの品質が向上することを望みました。例: 線の太さ、色の品質など。

では、GNU PLOT の使いやすさを維持しながら、品質の問題を排除するツールはありますか?

[Excel が生成するグラフは気に入っていますが、残念ながら Linux にはありません...]

4

3 に答える 3

22

以外のツールが必要な場合gnuplotは、その使用方法が間違っています。私は同意します、デフォルトの色と設定はそれほどきれいに見えませんが、定義ファイルで簡単に微調整できます~/.gnuplot

set macros
png="set terminal png size 1800,1800 crop enhanced font \"/usr/share/fonts/truetype/times.ttf,30\" dashlength 2; set termoption linewidth 3"
eps="set terminal postscript fontfile \"/usr/share/fonts/truetype/times.ttf\"; set termoption linewidth 3;

set style line 1 linecolor rgb '#de181f' linetype 1  # Red
set style line 2 linecolor rgb '#0060ae' linetype 1  # Blue
set style line 3 linecolor rgb '#228C22' linetype 1  # Forest green

set style line 4 linecolor rgb '#18ded7' linetype 1  # opposite Red
set style line 5 linecolor rgb '#ae4e00' linetype 1  # opposite Blue
set style line 6 linecolor rgb '#8c228c' linetype 1  # opposite Forest green

サンプル スクリプト:

@png
set output "output.png"
plot x ls 1, -x ls 2, x**3 ls 3

そして、あなたはすでにかなり素晴らしいグラフを持っています。少し微調整すればlinewidthfontsizeExcel よりも優れた結果を得ることができます。

于 2013-08-16T06:00:13.387 に答える
4

Rを試してみてください。R にはさまざまなグラフ描画ライブラリがあります。そして、それはこのSOの質問で非常によく説明されています - Relationship between plotting packages in R

于 2013-08-16T04:28:55.180 に答える