我的数据文件是一组围绕轴原点的(x,y,z)点.它们代表一种措施失败的点.这些要点在此链接中.
Gnuplot可以绘制它们,
set encoding iso_8859_1
set term postscript eps enhanced color size 4.7in,4in
set xlabel "X"
set ylabel "Y"
set zlabel "Z"
set output "test_gp.eps"
set style line 1 lc rgb '#0060ad' pt 7 ps 0.5 lt 1 lw 0.5 # --- blue
set style fill transparent solid 0.15 noborder
splot "data.dat" u 1:2:3 w p ls 1 title "P_{error}"
Run Code Online (Sandbox Code Playgroud)
由此产生的情节
问题是该图未显示更可能发生错误的位置.如果可能的话,我想展示点密度的变化.
我不知道是否可以改变点的颜色或给它们透明度,并尝试用最密集的点来表示位置.
如果3D点的密度的表示是不可能的,另一种方式可以是,使点的投影密度在三个平面(X = 0,Y,Z),(X,Y = 0,Z),( X,Y,Z = 0).
问候
编辑:
我可以用不同的颜色绘制我的实验的success(0)和error(1)点位置.此 …