2016-03-04 214 views
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" 

和我得到这个情节 -

enter image description here

正如你所看到的那样,没有圈子,每个点都是+

如何绘制圆圈?

回答

2

要与圈画需要

splot "data.out" linecolor "blue" pointtype 6 

要获得圈试型6或7圈的大小可以通过添加选项pointsize 2改变(数量为大小的值)