2列のコンマ区切りのテキストファイルから散布図を作成する必要があります。
gnuplot> set style fill transparent solid .5 noborder
gnuplot> plot "corr.csv" using 0:1 with circles lc rgb "blue"
出力は次のとおりです。
X軸の値で円を拡大したいと思います。
これは、スケーリング/円のサイズを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"