Clustering Azimuths: Algorithm & Link

  • Thread starter Thread starter billiards
  • Start date Start date
AI Thread Summary
To cluster azimuths effectively, especially considering the circular nature of the data, transforming the azimuths into a two-dimensional space using the sine and cosine functions is recommended. This approach allows for better visualization and clustering on a toroidal surface. For optimal clustering, algorithms that can autonomously determine the number of clusters, such as DBSCAN or Gaussian Mixture Models, are suggested. Python libraries like scikit-learn can facilitate the implementation of these algorithms. Overall, utilizing these techniques will help in accurately clustering azimuth data.
billiards
Messages
765
Reaction score
16
Hi all,

If I have a set of azimuths, e.g. [ 0, 10, 11, 67, 68, 69, 70, 124, 127, 136, 355].

How can I cluster these directions bearing in mind that 355 is close to 0?

Can someone point me to a link, preferably with an algorithm I can use.

Cheers
 
Mathematics news on Phys.org
I'm sure there are algorithms for clustering on a (1-dimensional) torus. A quick google search pointed me to this.
If you don't find one, this hack might work: transform your one-dimensional distribution to a circle in 2 dimensions: x -> (sin x, cos x), and look for clusters there.
 
Nice idea to use sinx, cosx.

Any idea what the best clustering algorithm to use would be? Ideally I want something that can figure out the optimum number of clusters itself from the data.

(Incidentally I am trying to do this using python -- so any python specific help would be particularly appreciated)
 
No idea, sorry.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Back
Top