Here's my scenario. Consider a set of events that happen at various places and times - as an example, consider someone high above recording the lightning strikes in a city during a storm. For my purpose, lightnings are instantaneous and can only hit certain locations (such as high buildings). Also imagine each lightning strike has a unique id so one can reference the strike later. There are about 100,000 such locations in this city (as you guess, this is an analogy as my current employer is sensitive about the actual problem).

For phase 1, my input is the set of (strike id, strike time, strike location) tuples. The desired output is the set of the clusters of more than 1 event that hit the same location within a short time. The number of clusters is not known in advance (so k-means is not that useful here). What is being considered as 'short' could be predefined for a given clustering attempt. That is, I can set it to, say, 3 minutes, than run the algorithm; later try with 4 minutes or 10 minutes. Perhaps a nice touch would be for the algorithm to determine a 'strength' of clustering and recommend that for a given input, the most compact clustering is achieved by using a particular value for 'short', but this is not required initially.

For phase 2, I'd like to take into consideration the amplitude of the strike (i.e., a real number) and look for clusters that are both within a short time and with similar amplitudes.

I googled and checked the answers here about data clustering. The information is a bit bewildering (below is the list of links I found useful). AFAIK, k-means and related algorithms would not be useful because they require the number of clusters to be specified apriori. I'm not asking for someone to solve my problem (I like solving it), but some orientation in the large world of data clustering algorithms would be useful in order to save some time. Specifically, what clustering algorithms are appropriate for when the number of clusters is unknown.

Edit: I realized the location is irrelevant, in the sense that although events happen all the time, I only need to cluster them per location. So each location has its own time-series of events that can thus be analyzed independently.

Some technical details:
- as the dataset is not that large, it can fit all in memory.
- parallel processing is a nice to have, but not essential. I only have a 4-core machine and MapReduce and Hadoop would be too much.
- the language I'm mostly familiar with is Java. I haven't yet used R and the learning curve for it would probably be too much for what time I was given. I'll have a look at it anyway in my spare time.
- for the time being, using tools to run the analysis is ok, I don't have to produce just code. I'm mentioning this because probably Weka will be suggested.
- visualization would be useful. As the dataset is large enough so it doesn't fit in memory, the visualization should at least support zooming and panning. And to clarify: I don't need to build a visualization GUI, it's just a nice capability to use for checking the results produced with a tool.

Thank you. Questions that I found useful are: http://stackoverflow.com/questions/2027252, http://stackoverflow.com/questions/562904, http://stackoverflow.com/questions/2129269, http://stackoverflow.com/questions/691922, http://stackoverflow.com/questions/356035

link|improve this question

74% accept rate
Just to be certain: is the clustering parameter the size of the neighborhood that contains the points (as opposed to the maximum distance between data points)? Can a data point be a member of more than one cluster? For example, with a cluster parameter of 3 minutes, if lightning struck the Empire State three times, with two minutes between strikes, what are the clusters? – outis Feb 20 '10 at 9:09
The clustering parameter is the maximum distance between adjacent events. How many happen to be in a cluster depends; in fact the primary goal of this analysis is to identify which events are those that happened together (in the real world case, the strikes that were closer together than the others need to be analyzed further). A data point can only be part of 1 cluster (so fuzzy clustering is not applicable). With the above clarification that a cluster's parameter is the max distance between adjacent points, a value of 3 minutes puts all those strikes in 1 cluster. – wishihadabettername Feb 20 '10 at 14:16
After more googling, I found out about (RapidMiner)[rapidminer.com] which has a number of clustering algorithms (for the curious, they are: k-Means, k-Means (Kernel), k-Medoids, DBSCAN, Expectation Maximization Clustering, Support Vector Clustering, Random Clustering, Agglomerative Clustering, Top Down Clustering, Flatten Clustering, Extract Cluster Prototypes) plus several others supported via the Weka plugin (Weka: W-CLOPE, W-Cobweb, W-EM, W-FarthestFirst, W-HierarchicalClusterer, W-SimpleKMeans, W-XMeans, W-sIB). I'm not familiar with most so need to grab a coffee and learn. – wishihadabettername Feb 21 '10 at 1:17
feedback

2 Answers

up vote 1 down vote accepted

Couldn't you just use hierarchical clustering with the difference in times of strikes as part of the distance metric?

link|improve this answer
This is an excellent suggestion and looks very much to be the answer. From what I've read in a few minutes, the single-link variant of this algorithm is the best suited. There's a ton of information about this algorithm (I found a video lecture as well) so I'll go and read and be back tomorrow. Thank you! – wishihadabettername Feb 22 '10 at 3:41
feedback

I would suggest you to look into Mean Shift Clustering. The basic idea behind mean shift clustering is to take the data and perform a kernel density estimation, then find the modes in the density estimate, the regions of convergence of data points towards modes defines the clusters.

The nice thing about mean shift clustering is that the number of clusters do not have to be specified ahead of time.

I have not used Weka, so I am not sure if it has mean shift clustering. However if you are using MATLAB, here is a toolbox (KDE toolbox) to do it. Hope that helps.

link|improve this answer
Thanks, I'll read those papers and think. I was planning to use MATLAB initially, but there's nothing preventing me from trying with Octave. – wishihadabettername Feb 22 '10 at 3:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.