Re: Unable to use cluster function in DBSCANclusterer class

2013-07-26 Thread Thomas Neidhart
On 07/26/2013 09:54 PM, arvind viswanathan wrote: > I am trying to use the class for clustering. However I am not sure about > the syntax of using this function. > Here is what I have, > List data = new ArrayList(); > DBSCANClusterer dbscan = new > DBSCANClusterer(10,3); > List > clusters = dbscan.

Unable to use cluster function in DBSCANclusterer class

2013-07-26 Thread arvind viswanathan
I am trying to use the class for clustering. However I am not sure about the syntax of using this function. Here is what I have, List data = new ArrayList(); DBSCANClusterer dbscan = new DBSCANClusterer(10,3); List > clusters = dbscan.cluster(data ); Above line gives an error, The method cluster(C