gnuplotの使い方メモ

備忘録に。 インストール Macの場合はbrewでインストールできる。 1 $ brew install gnuplot gnuplotコマンドで起動。 ファイルをプロットする 例えばdata.txtが以下のようになっているとする。 1 2 3 4 5 #x #y1 #y2 0 1 2 1 2 1 2 0 2 3 1 1 これを描画する。 using X:Yで、X番目の列を横軸、Y番目の列を縦軸にする。 w lpとは"with linespoints"の略。つまり線と点を描画する。w lだと"with line"、w lp lt 3 lw 2だと"with linepoints linetype 3 linewidth 2"という意味。いろいろある。 1 2 3 $ set xlabel "X axis" $ set ylabel "Y axis" $ plot "data.txt" using 1:2 w pl 軸の範囲指定 例えばx軸を[0,3000]の範囲に制限して描画したいなら、次のコマンドを打つ。...

2019-11-26 · (updated 2019-11-27) · 1 min · 207 words