I have a one dimensional List like this
public class Zeit_und_Eigenschaft
{
[Feature]
public double Sekunden { get; set; }
}
//...
List<Zeit_und_Eigenschaft> lzue = new List<Zeit_und_Eigenschaft>();
//fill lzue
lzue can be
lzue.Sekunden
1
2
3
4
8
9
10
22
55
...
Goal is to find clusters in that list, ie elements that could form groups like f.i. in this example
lzue.Sekunden
1
2
3
4
8
9
10
22
55
Which clustering algorithm is suitable(I don't know the number of clusters k)? GMM? PCA? Kmeans? Other?