2017-02-21 129 views
1

私は星のクラスターを表すxとyのデータポイントを持っています。私はGnuplotと重なり点を持つ散布関数を使って密度を視覚化したいと思っています。Gnuplot:散布図と密度

私は、次のコマンドを使用:

set style fill transparent solid 0.04 noborder 
set style circle radius 0.01 
plot "data.dat" u 1:2 with circles lc rgb "red" 

結果:

enter image description here

を私はその

enter image description here

のようなものは、gnuplotの中にいる可能性があるしたいが?何か案は?

答えて

1

imagemagickで画像を後処理するオプションはありますか?

# convert into a gray scale image 
convert source.png -colorspace gray -sigmoidal-contrast 10,50% gray.png 

# build the gradient, the heights have to sum up to 256 
convert -size 10x1 gradient:white-white white.png 
convert -size 10x85 gradient:red-yellow \ 
        gradient:yellow-lightgreen \ 
        gradient:lightgreen-blue \ 
     -append gradient.png 
convert gradient.png white.png -append full-gradient.png 

# finally convert the picture 
convert gray.png full-gradient.png -clut target.png 

私は試していませんが、gnuplotでグレースケール画像を直接プロットすることができます。 colored scatter plot

+0

ニースの代替: rotated gradient

これは結果である:

は、ここで(回転)勾配画像です!しかし、私は本当にGnuplotの解決策が必要です。 – Samuel