감동, 마음이 움직이는 것

[gnuplot] use single colorbar in multiplot 본문

Tips (Utility, Computer Language, and etc.)

[gnuplot] use single colorbar in multiplot

Struggler J. 2018. 1. 4. 03:27

https://stackoverflow.com/questions/23973595/setting-common-colorbox-for-all-graphs-in-multiplot-in-gnuplot


먼저 

unset colorbox로 개별 그림에 들어가는 작은 colorbox를 지워준다. 

그 다음 매뉴얼세팅으로 colorbox를 지정해준다. 


unset colorbox

splot './data.txt' u  2:(1/$6):12:(3)  pt 6 ps variable lw 4 lt palette t ''

splot './data.txt' u  3:(1/$8):13:(3)  pt 8 ps variable lw 4 lt palette t ''

set colorbox user origin 0.9,0.13 size 0.03,0.8 

splot './data.txt' u  4:(1/$10):14:(3) pt 12 ps variable lw 4 lt palette t ''