如何识别 Julia 中的独立球体?

How to identify standalone spheres in Julia?

如何摆脱独立的球体?或者我如何操作数据集,我不绘制没有连接​​在一起的球体? (意味着球体的表面不接触另一个球体) 在这个例子中有一些球体没有连接到主桩。数据集包括x-,y-,z-坐标和每个球体的体积。

谢谢, 汤姆

你要的东西叫anomaly detection,它不是画图的问题,而是分析多维数据的一系列算法。

有很多方法可以解决这个问题,但也许您可以先看看:https://github.com/milanflach/MultivariateAnomalies.jl

另一种方法是使用聚类方法(参见 https://github.com/JuliaStats/Clustering.jl) such as DBSCAN, and then interpret small clusters and anomalies, for discussion see here https://towardsdatascience.com/best-clustering-algorithms-for-anomaly-detection-d5b7412537c8