set title 'タイトル' #グラフのタイトル set xlabel "らべる" #横軸のラベル set ylabel "らべる" #縦軸のラベル set xtics rotate by -90 #目盛の数字を-90°回す;もとに戻すには set xtics noroatte set format y "%.2f" # y軸の表示形式の指定
set yrange [*:*] ; replot #軸範囲を自動設定に戻す
set ytics autofreq # y軸の目盛を自動に戻す set mxtics 2 #x軸の副目盛数 set mytics 2 #y軸の副目盛数
set grid ; replot #方眼グリッドを引く set grid mytics; replot #副目盛りにも方眼グリッドを引く
set logscale y #対数グラフにする。戻すときは unset logscale y
using 1:(-$7) などができる。ここで$7はカラム番号である(ファイル内データの7番目のカラム)、 $7の符号を逆転させている。また、log10(), abs() などの関数も使える。
plot 'output.txt' u 1:(sqrt($4)) every w l #例
plot 'output.txt' u 1:2 every 51 w l
plot 'list.libxc_graph' using 2:1 with impulses title '# of paper in the libxc Mar 28'
plot 'list.libxc_graph' using 2:1 with boxes title '# of paper in the libxc'
(例) 縦長のグラフを横に2つ並べる set size 0.5,1.0 set multiplot set origin 0.0,0.0 ; plot sin(x) set origin 0.5,0.0 ; plot cos(x) unset multiplot
次のようなファイル tmp.trjがあったとする。
0.03125 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ... 0.06250 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ... 0.09375 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ... ...
1列と2列、1列と9列、1列と10列、を使って3本のグラフを描く。
$ gnuplot gnuplot> plot "tmp.trj" u 1:2 w l, "tmp.trj" u 1:9 w l, "tmp.trj" u 1:10 w l
または、リモートログイン時は
(たとえば windows PC(ホスト名がhogehoge)から端末で 別のマシンにログインしており、
別のマシンで実行した gnuplotのグラフをwindows PCに表示したいとき)
$ DISPLAY=hogehoge.eit.hirosaki-u.ac.jp:0 gnuplot
もしくは、sshリモートログイン時に -Yオプションを付けていた場合などは、単に、
$ gnuplot
とする。
(例)plotでファイルの先頭と末尾の何行かを除く plot '< cat hogehoge.sup | tail -n +5 | head -n -2'
clear # グラフの消去 reset # 設定の初期化(表示領域をデフォルトにもどす)
show variable #ユーザ変数の一覧 undefine fn # 変数の取消
show format # 表示形式の表示
using -> u with lines -> w l w lp -> with linespoints lw 2 #ライン幅 ps 2 #プロット点サイズ
set terminal #ターミナルの一覧を表示する(説明つき) show terminal show term #利用中のターミナルの種類を知る
set term postscript [colorなど] #変更 set term png set term x11 show output #利用中の出力先を知る set output "output.ps" #-> lprプリンタ #印刷? save "output.plt" #-> load "output.plt" できる #現在の状態を保存
Ubuntu 16.04 では 14.04のように wxt は簡単には利用できなくなった。 代わりに gnuplot-qt パッケージをインストール(gnuplot-x11 と入れ替える)して、 set term qt を使うのが良い。
gnuplotで作成したGIFアニメ→adobe premiere elementsで単に読み込む。 →右上の書き出し・配信→携帯電話・携帯プレイヤ→種類はApple TV,iPad,iPhone4の720p 29.97で良い。
色の一覧 (Color-name and point-shapelists for gnuplot 4.6.3)
こちらのページを参照のこと。
線の太さやマーカ
$ gnuplot
gnuplot> test