0
我想做一個3d情節,我希望每個點都與我選擇的顏色/形狀/陰影。事實是,我想使用here的調色板。gnuplot:3d圓形散點圖
比方說我的數據是這樣的 -
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
和我的gnuplot的命令看起來是這樣的 -
set style fill transparent solid 0.75 noborder
set style circle radius screen 0.01
splot "data.out" with circles linecolor rgb "blue"
和我得到這個情節 -
正如你所看到的那樣,沒有圈子,每個點都是+
。
如何繪製圓圈?