set terminal png #出力をpngファイルに指定 set output "fig_sample_bigf.png" #pngファイル名指定 set datafile separator "," #データ区切り文字を変更する set xrange [0:1200] #x軸の範囲指定 set xlabel "time (sec)" #x軸ラベル set ylabel "Pressure (MPa)" #y軸ラベル set title "Pressure measurement" #タイトル set grid xtics ytics mxtics mytics #グリッド表示 #1列(x値)を0.01倍,y値を4列としてプロット. plot "inp_bigf.csv" using ($1*0.01):4 with lines linetype 4 notitle