gnuplot: 산점도의 원 크기 제어

gnuplot: 산점도의 원 크기 제어

쉼표로 구분된 두 열의 텍스트 파일에서 분산형 차트를 생성해야 합니다.

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

출력은 다음과 같습니다.

여기에 이미지 설명을 입력하세요.

그러나 나는 다음과 같은 것을 원합니다 : 여기에 이미지 설명을 입력하세요.

x축의 값으로 원을 확대하고 싶습니다.

답변1

이것은 예이다/원 크기 증가엑스값이 더 커집니다.

샘플 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"

산출: 여기에 이미지 설명을 입력하세요.

관련 정보