gnuplot> plot sin(x) with dot
とすると、グラフが小さな点で描かれます。
gnuplot> plot sin(x) w d
と省略できます。
gnuplot> plot sin(x) with line
gnuplot> plot sin(x) w l
では、点を線で結んだグラフになります。
gnuplot> plot sin(x) with impulse
gnuplot> plot sin(x) w i
はインパルス表示です。