unset key #曲線の説明や表題のリセット
set key width 1 height 0 spacing 1.5 reverse box
set term svg enh font "Times, 10" size 640,480 background "white" #SVG形式で出力、拡張機能、フォント、サイズ、背景
set out "distributorsIncome.svg"
set label "配給会社別年間配給収入" at sc 0.25, 0.80 font "TakaoGothic,24"
set xlabel "西暦" font "TakaoGothic,12"
set ylabel "配給収入 (単位:億円)" font "TakaoGothic,12"
set xrange [1975:2000]
set yrange [0:280]
set xtics 5
set xtics add ("" 1999) # Added for clarity, may be omitted if necessary.
set ytics 20
set grid
plot \
"toho.dat" title "東宝 " lt -1 lw 1 pt 7 lc rgb "red" with linespoints, \
"toei.dat" title "東映 " lt -1 lw 1 pt 9 lc rgb "blue" with linespoints, \
"syochiku.dat" title "松竹 " lt 0 lw 3 pt 4 lc rgb "green" with linespoints, \
"nikkatsu.dat" title "にっかつ " lt -1 lw 1 pt 3 lc rgb "magenta" with linespoints