I have a csv file which has thousands of floating point values arranged in ascending order. I want to bunch/cluster those values into suitable clusters.
for example :
0.001
0.002
0.013
0.1
0.101
0.12
0.123
0.112
0.113
0.2
so the clusters should be like
0 - 0.1 with count 4
0.1 - 0.2 with count 6
How can I do this clustering task automatically in Python? Do I need to keep some initial parameters?