タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

gnuplotに関するnkem-sのブックマーク (1)

  • gnuplot | Mikami no blog

    棒グラフは簡単に書けるが、エラーバー付きとなるとなかなか難しかったのでメモ。 普通の棒グラフは"plot"のオプションに"boxes"を指定する。 $ plot "filename.txt" using 1:2 with boxes エラーバー付きは"boxerrorbars"を指定 $ plot "filename.txt" using 1:2:3 with boxerrorbars *usingで指定した列が何に対応するかは以下を参照 [書式] plot "file" using ycol | xcol ycol | xcol ycol ydelta | xcol ycol ylow yhigh | xcol ycol ylow yhigh boxwidth | xcol: xの値 ycol: yの値 ydelta: yの標準偏差 ylow: yの最小値 y

  • 1