1
有沒有一種方法來格式化顏色框,以便使用數據的實際範圍,最大值和最小值是數據的最大/最小值?gnuplot:顏色框的最小值和最大值的抽搐
例如,當我使用這個數據文件:
0 0 0.12
0 1 0.23
1 1 0.34
1 0 0.43
命令plot 'data.dat' using 1:2:3 with points ps 1 pt 7 palette notitle
創建以下情節:
要使用cbrange設置爲[STATS_min:STATS_max]
的數據的最小/最大:
stats 'data.dat' using 3
set cbrange [STATS_min:STATS_max]
plot 'data.dat' using 1:2:3 with points ps 1 pt 7 palette notitle
有沒有辦法在0.43
和0.12
處添加一個tic?