web-dev-qa-db-ja.com

gnuplot:散布図の円のサイズを制御します

2列のコンマ区切りのテキストファイルから散布図を作成する必要があります。

gnuplot> set style fill transparent solid .5 noborder
gnuplot> plot "corr.csv" using 0:1 with circles lc rgb "blue"

出力は次のとおりです。

enter image description here

しかし、私はそのようなものが欲しいです: enter image description here

X軸の値で円を拡大したいと思います。

3
sci9

これは、スケーリング/円のサイズをx値が大きくなります:

サンプル input.datファイルの内容(2列):

1 1
1 2
2 3
2 4
3 3
4 3
5 4
6 4
7 7
8 4
8 5
9 5

インタラクティブモードのコマンドライン経由:

$ gnuplot
gnuplot> set style fill transparent solid .5 noborder
gnuplot> set xrange [0:GPVAL_DATA_X_MAX]
gnuplot> set yrange [0:GPVAL_DATA_Y_MAX]
gnuplot> plot "input.dat" u 1:2:(.03*($1)) w circles lc rgb "blue"

出力: - enter image description here

3
RomanPerekhrest