Gnuplot
2Dプロットスタイル
サーチ…
プロットスタイルの選択
Expliciteの選択
プロットスタイルは、通常、 with
キーワードを使用しwith
選択されます。
plot x with points
これにより、すべてのplot
に対して異なるプロットスタイルを使用できplot
。
plot x with points, 2*x with lines
gnuplotコマンドウィンドウにhelp with
入力help with
、使用可能なすべての描画スタイルのリストが表示されます。
グローバルプロットスタイルの選択
プロットスタイルは、すべてのプロットコマンドに対してグローバルに設定することもできます。ここで、gnuplotは、異なるデフォルトスタイルを設定できる関数とデータのプロットを区別します。
関数の場合、 set style function
関数を使用しset style function
。
set style function linespoints
plot x, 2*x
データファイルの場合set style data
。
set style data lines
plot 'file.dat', 'other-file.dat'
関数のデフォルトスタイルはlines
で、データファイルの場合はpoints
であることに注意してください。 show style data
とshow style function
は、現在選択されているプロットスタイルを検査できます。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow