Cluster analysis is the process of grouping "similar" objects into groups known as "clusters", along with the analysis of these results.

learn more… | top users | synonyms (3)

-1
votes
0answers
9 views

Getting cluster results from mahout in a human readable form using eclipse

I have googled this, and I see a lot of people explaining how to use something called ClusterDumper in the terminal, but I'm working in eclipse. How can I tell my clustering class (it's only a simple ...
-1
votes
0answers
36 views

how to fit data to the cluster number using mclust in R

I have a group of data like this ID Class1 Class2 Class3 Class4 Class5... xx xxxxx  xxxxx  xxxxx  xxxxx  xxxxx xx xxxxx  xxxxx  xxxxx  xxxxx  xxxxx xx xxxxx  xxxxx  xxxxx  xxxxx  xxxxx xx xxxxx  ...
1
vote
3answers
40 views

R efficient index matching elements, cluster evaluation

This may be a fairly esoteric question. I'm trying to implement some of the ideas from Albatineh et al (2006) (DOI: 10.1007/s00357-006-0017-z) for a spatial clustering algorithm. The basic idea is ...
0
votes
1answer
31 views

Scatter matrices for class separability

I found that scatter matrices are useful to calculate within and between class separability. This link gives more information about them. My question is as follows: Suppose there are 4-classes, I ...
-2
votes
1answer
38 views

How would a person read the K-Means clustering algorithm in English?

For reference, this is the algorithm that Wikipedia relates to K-means clustering method.
9
votes
9answers
184 views
+100

How can I find the center of a cluster of data points?

Let's say I plotted the position of a helicopter every day for the past year and came up with the following map: Any human looking at this would be able to tell me that this helicopter is based out ...
0
votes
0answers
37 views

how to individuate two separate sets of points within a distribution

I have some difficulties in distinguishing univocally two or more sets of points within a distribution on a bidimensional plane. I would like to separate those points in two different arrays on the ...
-1
votes
0answers
21 views

Appending column of ORCLUS output to data

I am using the ORCLUS package for subspace clustering and I want to append the cluster output to the file. So for example call ORCLUS as clusterdata <- orclus(data,6,17,15,a=0.9,inner.loops=10) ...
0
votes
1answer
26 views

Agglomerative clustering algorithm that preserves ordering of the data points?

I need a hierarchical clustering implementation (preferably in matlab) that preserves the order of my data points. For example, I don't want it to output something like this (((1, 5), (2, 3)), 4) I ...
-1
votes
0answers
10 views

Windows Server 2012 Resource Pooling [migrated]

Note: this question is not necessarily directed at Windows Server 2012. Within my household, I have 5 Dell flatbed data servers all with 4 x 3.75GHZ processors and 6 GB of ram in each. They all have ...
0
votes
2answers
40 views

Document Clustering in Java using Weka

I'm trying to cluster a group of news articles in Java that are about a particular topic. I crawled news sites about a particular topic using Crawler4J, rolled my own TF/IDF implementation comparing ...
-1
votes
2answers
13 views

java k-means term clustering using distance matrix

I'm working on the clustering of terms using k-means and NGD (Normalized Google Distance). I have a distance matrix as input of the k-means algorithm. Is it possible to run k-means on this situation? ...
-1
votes
1answer
15 views

How to generate a 'clusterable' dataset in MATLAB

I need to test my Gap Statistics algorithm (which should tell me the optimum k for the dataset) and in order to do so I need to generate a big dataset easily clustarable, so that I know a priori the ...
0
votes
2answers
37 views

scikits.learn clusterization methods for curve fitting parameters

I would like some suggestion on the best clusterization technique to be used, using python and scikits.learn. Our data comes from a Phenotype Microarray, which measures the metabolism activity of a ...
1
vote
1answer
32 views

How to show the cluster assignment in each cluster

Is there a way to show the the member in a cluster after cutree step in R? for example: tree <- hclust(dist, method='single') plot(tree, hang=-1, cex=0.8) cutree(tree, h=18) I obtain sth like: ...
0
votes
1answer
30 views

Fast way of doing k means clustering on binary vectors in c++

I want to cluster binary vectors (millions of them) into k clusters.I am using hamming distance for finding the nearest neighbors to initial clusters (which is very slow as well). I think K-means ...
0
votes
1answer
41 views

How to find clusters using python?

I have a list of points (x,y, pointNo) eg.: [(344, 279, 0), (344, 276, 1), (342, 267, 2), (349, 259, 3), (348, 279, 4), (339, 268, 5), (343, 277, 6), (336, 275, 7), (344, 262, 8), (346, 269, 9), ...
3
votes
1answer
59 views

Dealing with clusters when searching for points on map using mysql

I've found various questions with solutions similar to this problem but nothing quite on the money so far. Very grateful for any help. I have a mysql (v.5.6.10) database with a single table called ...
0
votes
0answers
53 views

How to run Kmean Clustering from Mahout in Action?

Hi I was trying to run the example from Mahout in action Chapter 7(k-Mean Clustering). Can somebody guide me how to run that example in a Hadoop Cluster(single Node CDH-4.2.1) with Mahout(0.7) These ...
0
votes
0answers
18 views

How to get the most frequent words for a set of documents in Lucene?

I'm trying to cluster documents that were indexed using Lucene 4.3. The results of the clustering algorithm is a set of clusters where each cluster contains the most similar documents (I only store ...
-1
votes
1answer
58 views

Performing k means clustering with a sample of the data [closed]

I'm a Medical Physics Master student and i'm currently working on my Thesis. The work consists of extracting features from endoscopic images and perform classification with an SVM. I have images of 4 ...
-1
votes
1answer
42 views

way to use rapidminer clustering model using C#

I have a process in rapidminer that applied k mean clustering on my provided excel sheet records. Now I want that when I add some new record from c# desktop application, it uses that trained model to ...
0
votes
0answers
38 views

how to print mahout lda cvb topic

I want to run clustering lda cvb job using mahout CVB0Driver API. But I don't know how to print the results. Here is my codes. import org.apache.hadoop.conf.Configuration; import ...
-2
votes
0answers
14 views

clustering issues- fail to clust a large set of data [closed]

I have a large sets of data with around 100K paired data-values if I failed in the hierarchy clustering methods, even with some data points from this dataset( ~ 5000 paired data) Any other clustering ...
0
votes
0answers
28 views

Solr/Lucene - Custom Data Clustering

Can someone please tell me if there is a way to have a custom clustering of the data from solr 'query' results? I am facing 2 issues currently: The Carrot clustering only applies clustering to the ...
-1
votes
1answer
63 views

Class Not Found Exception in KMeanClustering--Mahout

Hi i'm trying to run SimpleKmeanClustering Code, from Github to see how clustering works, I'm able to complile the code on my windows Eclipse. I made a jar of my project, i want to run it on a single ...
1
vote
1answer
47 views

Evaluate class separability

I want to evaluate separability of my features for 3 classes and do the same for other 2 sets of features and eventually show that my features provide the best separability. To make it clearer, I want ...
-3
votes
0answers
26 views

Which software package allows me to assign initial seed when using k-means clustering?

I would want the clustering algorithm to cluster based on manual seeds I assign. Does any package allow me to do that? Thanks!
-4
votes
0answers
43 views

clustering distributions of observation data in matlab [closed]

I have 30 years of data with approximately 150 daily observations and I want to see if the distributions of the data can be clustered into a number of different groups depending on how similar the ...
0
votes
1answer
17 views

Number of clusters obtained using carrot2 inconsistent on the same data set

I am using carrot2 for clustering a set of 500 emails. I am using the BisectingKMeans algorithm provided by carrot2. On the same data set, when I specify k = 9, only 6 are generated and when I give it ...
0
votes
1answer
69 views

R and SAS : different results for clustering analysis

I'm doing a cluster analysis with R and SAS and I have results which are really different. I know that the results are random, so a little difference is normal, but the difference is huge. I perform ...
-1
votes
2answers
40 views

Vector.class doesn't exist in Mahout-core 0.7 -cdh4.2.1 jar, not able to run SimpleKMeansClustering Example

Hi i'm new to Mahout so was to trying to run the SimpleKMeansClustering from Github. I dowloaded the Mahout-core jar from Cloudera Repository. Now when i'm trying to compile my code in eclipse, i ...
2
votes
1answer
39 views

Algorithm to find Voting Blocks

(Warning to music lovers: This question deals with the Eurovision Song Contest) The Eurovision Song Contest is a popular event in Europe. For those not familiar with the concept, it's basically a ...
0
votes
0answers
32 views

Code a FDR threshold for mixture of gaussians

I fitted some data with a mixture of 2 gaussians using MLE and an EM algorithm... I now have 3 parameters for each of the two gaussians (mu, sigma and the scaling factor). They are fairly close ...
0
votes
0answers
28 views

Exporting result from kml package in R

I'm using a kml package of R to cluster my data and I need to get in the end a csv file with a column including the number of clusters according to each id. The data has many missing values, so I ...
0
votes
0answers
44 views

what might be the best clustering method for microblog data? [closed]

I have a term document matrix, and I'm trying to cluster the microblog. The plan is, similar to PCA, divided the many microblog posts to categories, and I will name these categories manually. There ...
-2
votes
1answer
25 views

dimension reduction of two multivariate Gaussian distributions? [closed]

Could someone please explain me how a person does a dimension reduction (for example with PCA) of two multivariate Gaussian distribution and yet show that the distance between them is still preserved ...
-3
votes
0answers
36 views

What is the difference between K-means and C-mean. What is the difference among soft K-mean and fuzzy K-mean and fuzzy C-mean? [duplicate]

I was wondering whether this is just a naming issue or there is an actual difference between these techniques. K-means Vs C-means soft K-means Vs fuzzy K-means Vs fuzzy C-means
-2
votes
0answers
13 views

Medical procedure similarities [closed]

I am trying to cluster the medical claim record by some similarity measurement system between them in a patient. These medical claim records have some attributes like diagnosis code (ICD-9), procedure ...
1
vote
1answer
94 views

IO Exception while running K-means clustering using mahout and hadoop jar [closed]

I am trying to run a clustering program using Mahout.Following is my java code which I am using package com; import java.io.File; import java.io.IOException; import java.util.ArrayList; import ...
0
votes
0answers
53 views

Null pointer while storing the vectors in sequence files [closed]

I am trying to implement clustering using mahout.In this I have some points { 1, 1 }, { 2, 1 }, { 1, 2 },{ 2, 2 }, { 3, 3 }, { 8, 8 }, { 9, 8 }, { 8, 9 }, { 9, 9 } Now i have written a code using ...
-2
votes
0answers
68 views

Clustering using mahout [closed]

I am trying to write a simple classification program using mahout-0.7 and java I have following points as dataset { { 1, 1,1}, { 2, 1,2 }, {3, 1, 2 }, { 2,2,4 }, { 3,4,3 }, { 3,8,8 }, { ...
-5
votes
0answers
47 views

No input clusters found, Check your -c argument error in clustering [closed]

1.seqdirectory mahout seqdirectory --input /user/hdfs/input/new1.csv --output /user/hdfs/new1/seqdirectory --tempDir /user/hdfs/new1/seqdirectory/tempDir 2.seq2sparse mahout seq2sparse ...
1
vote
1answer
50 views

Associated Labels in a dendrogram plot - MATLAB

I have the following set of data stored in file stations.dat : Station A 305.2 321.1 420.9 383.5 311.7 197.1 160.2 113.9 60.5 60.5 64.8 154.3 Station B 281.1 304.0 353.1 231.9 84.6 20.9 ...
1
vote
2answers
57 views

Clustering framework in Java

I have found another thread about this but am hoping that someone knows some other Framework. What I want to do is the following: I have about 200 vectors (7-10 dimensions) which I want to cluster. ...
0
votes
1answer
38 views

Counting How Many the Cluster Index

I am doing clustering with k-means, and here is the code: [g c] = kmeans(data,k,'dist','SqEuclidean'); g is the cluster index c is the centroid k is the number of clusters, I input '3' in it. When ...
-1
votes
0answers
16 views

What does this cluster command mean? [closed]

below is a part of readme file for Docluster.exe from http://ddm.cs.sfu.ca/. This is a clustering program. Running the program The easiest way to test the program is to run the batch files, i.e., ...
0
votes
1answer
56 views

Significance of “seed” in weka K means clustering

The weka SimpleKMeans implementation allows the user to specify a "seed value" with the option -s. I do not understand what it signifies. In this link, Mark Hall, the weka architect, says that it is ...
0
votes
1answer
32 views

Multi-dimensional data clustering

I am a data-mining newbie and need some help with a high dimensional data-set (subset is shown below). It actually has 30 dimensions and several thousand rows. The task is to see how they are ...
2
votes
0answers
35 views

Drawing clustered graphs in Python

I already have a way of clustering my graph, so the process of clustering isn't the issue here. What I want to do is, once we have all the nodes clustered - to draw the clustered graph in Python, ...

1 2 3 4 5 19