如何在Gnuplot中制作带调色板的位置图?

时间:2016-06-02 08:50:55

标签: gnuplot colorbar color-palette

如何制作包含delta_x和delta_y位置值的图表;我需要为显示各自时期的每个点使用调色板(或颜色条)(我当前的情节,以及我想制作的情节示例如下所示)。

我目前的Gnuplot代码如下:

Øgledronningens

我的数据如下:

set fontpath '/System/Library/Fonts'
set term post color enh eps font "Helvetica" 14 

#Gnuplot script file for plotting data

#Set Line style
set style line 12 lw 1 ps 1 pt 8 # empty triangle
set style line 13 lw 1 ps 0.7 pt 81 #empty circle 

#Add Legend
set key top right box

# set plot
set xrange[1.2:0]
set xlabel "Relative R.A. (mas)" # set xlabel
set mxtics 4
set xtics 0, 0.1, 1.2

set yrange[0:1]
set ylabel "Relative decl.  (mas)"
set mytics 4
set ytics 0, 0.1, 1

plot "MOD1.dat" using 1:2 w points ls 13 lc rgb 'black' title "Data1", "MOD2.dat" using 1:2 w points ls 12 lc rgb 'gray' title "Data2"

enter image description here

enter image description here

谢谢。

1 个答案:

答案 0 :(得分:3)

尝试palette线型,如下所示:

 plot 'MOD1.dat' u 2:3:1 w p pt 7 ps 2 lt palette

enter image description here