Displaying 20 results from an estimated 1000 matches similar to: "cluster a distance(analogue)-object using agnes(cluster)"
2011 Jun 27
3
New to R, trying to use agnes, but can't load my ditance matrix
Hi,
I'm mighty new to R. I'm using it on Windows. I'm trying to cluster using a
distance matrix I created from the data on my own and called it D10.dist. I
loaded the cluster package. Then tried the following command...
> agnes("E:D10.dist", diss = TRUE, metric = "euclidean", stand = FALSE,
> method = "average", par.method, keep.diss = n < 1000,
2011 Jan 27
3
agnes clustering and NAs
Hello,
In the documentation for agnes in the package 'cluster', it says that NAs are allowed, and sure enough it works for a small example like :
> m <- matrix(c(
1, 1, 1, 2,
1, NA, 1, 1,
1, 2, 2, 2), nrow = 3, byrow = TRUE)
> agnes(m)
Call: agnes(x = m)
Agglomerative coefficient: 0.1614168
Order of objects:
[1] 1 2 3
Height (summary):
Min. 1st Qu. Median Mean 3rd
2007 Nov 28
2
Clustering
Hello all!
I am performingsome clustering analysis on microarray data using
agnes{cluster} and I have created my own dissimilarity matrix according to a
distance measure different from "euclidean" or "manhattan" etc. My question
is, if I choose for example method="complete", how are the distances
between the elements calculated? Are they taken form the dissimilarity
2013 Jun 09
1
agnes() in package cluster on R 2.14.1 and R 3.0.1
Dear R users,
I discovered something strange using the function agnes() of the cluster
package on R 3.0.1 and on R 2.14.1. Indeed, the clusterings obtained are
different whereas I ran exactly the same code.
I quickly looked at the source code of the function and I discovered that
there was an important change: agnes() in R 2.14.1 used a FORTRAN code
whereas agnes() in R 3.0.1 uses a C code.
2010 Apr 05
0
Agnes in Cluster Package and index.G1 in the clusterSim package questions
Dear R Users:
I am new to R and I am trying to do a cluster analysis on a
single continuous variable using the Agnes [Agglomerative Nesting (Hierarchical
Clustering) ] in the Package ‘cluster’. I was able to apply this clustering method to
my data:
ward1 <- Agnes(balances, diss= FALSE, metric =
"euclidean", stand = TRUE, method = "ward", keep.diss
=TRUE, keep.data =
2006 Apr 24
1
Problem with the cluster package
Hi everybody,
I want to use the cluster package (Cluster Analysis Extended Rousseeuw et
al.). I downloaded it from the CRAN and installed it on my linux system
(fedora core 4). All seemed to be allright.
But when trying to launch examples, I obtained the following message :
> library(cluster)
> data(votes.repub)
> agn1 <- agnes(votes.repub, metric = "manhattan",
2003 Dec 11
1
cutree with agnes
Hi,
this is rather a (presumed) bug report than a question because I can solve
my personal statistical problem by working with hclust instead of agnes.
I have done a complete linkage clustering on a dist object dm with 30
objects with agnes (R 1.8.0 on
RedHat) and I want to obtain the partition that results from a cut at
height=0.4.
I run
> cl1a <- agnes(dm, method="complete")
2003 Dec 11
1
cutree with agnes
Hi,
this is rather a (presumed) bug report than a question because I can solve
my personal statistical problem by working with hclust instead of agnes.
I have done a complete linkage clustering on a dist object dm with 30
objects with agnes (R 1.8.0 on
RedHat) and I want to obtain the partition that results from a cut at
height=0.4.
I run
> cl1a <- agnes(dm, method="complete")
2006 Aug 16
1
help about agnes
Hello.
I have the following distance matrix between 8 points:
[1,] 0.000000 3.162278 7.280110 8.544004 7.071068 9.899495 6.403124 8.062258
[2,] 3.162278 0.000000 5.000000 6.403124 4.472136 8.944272 6.082763 8.062258
[3,] 7.280110 5.000000 0.000000 1.414214 1.000000 5.000000 4.242641 5.830952
[4,] 8.544004 6.403124 1.414214 0.000000 2.236068 4.123106 4.472136 5.656854
[5,] 7.071068 4.472136
2002 Jan 24
2
Data input performance
Dear list,
I'm brand new to R (started using it few days ago...), so sorry for possibly
stupid question.
Anyways, I'm using R to cluster my data. I do have the dissimilarity matrix
as a text file, numbers separated by space. It's at its best something like
2300x2300 matrix.
Now, it seems to me, that the process of importing the matrix into R is
rather slow. For the peak size of
2004 Feb 04
1
Clustering with 'agnes'
Hello,
I had a question regarding clustering using the agnes() function from the 'cluster' package.
I was wondering if anyone knew how I can identify cluster points after running the agnes function.
For example, I created a dataset with points randomly scattered around (0,0), (0,1) and (1,0). After clustering, the dendrogram shows all the clustered points and I get the ordering and
2005 Apr 07
2
axis colors in pairs plot
The following command produces red axis line in a pairs
plot:
pairs(iris[1:4], main = "Anderson's Iris Data -- 3 species",
pch = "+", col = c("red", "green3", "blue")[unclass(iris$Species)])
Trying to fool pairs in the following way produces the
same plot as above:
pairs(iris[1:4], main = "Anderson's Iris Data -- 3
2006 Oct 23
1
Agnes Help
Hi,
I'm trying to use the cluster package and I'm having some trouble... I
always get the message:
> myagnes <- agnes("datafile.dat")
> Error: could not find function "agnes"
the package cluster is listed in the library() command, and I can reach the
help files from Agnes as well
I know that this can be some really easy thing to fix, but right now I have
no
2011 Aug 31
1
agnes not working
Hello!
I created a distances matrix for 13 objects using daisy (see the attached file).
I am trying to clusteranalyse it using agnes but it's not working.
What might be the problem:
mydistances<-read.csv("Results of daisy.csv")
mycluster<-agnes(mydistances, method="ward")
I am getting:
Error in agnes(mydistances, method = "ward") :
NA/NaN/Inf in foreign
2005 Jan 25
4
agglomerative coefficient in agnes (cluster)
I haven't read the book, but could anyone explain more
about this parameter?
help(agnes) says that ac measures the amount of
clustering structure found. From the definition given
in help(agnes.object), however, it seems that as long
as
the dissimilarity of the merger in the final step of
the
algorithm is large enough, the ac value will be close
to
1. So what does ac really mean?
Thank
2003 Apr 28
4
plot(pam.object) error with R-1.7.0 on Red-Hat 8.0 i686
I don't know if there is some fault in compiling or a bug of the new
R-1.7.0 version:
cl.pam.2 <- pam(as.dist(1-cor(mel.data)),2)
plot(cl.pam.2)
perform a right partitioning and silhouette plot on the old R-1.6.2
instead
"Error in clusplot.default(x$diss,...... ;
x is not numeric"
is the output on the new R-1.7.0.
Same platform: RH8.0 i686.
Some suggestions?
A.S.
2010 Nov 16
2
Plotting an agnes tree with images instead of labels?
Hi,
I'd like to plot a tree with images of molecular structures instead of
labels (words). I think this is possible because someone who worked in my
office before I arrived did this. However I'm not sure if this person made
the image manually or plotted it only with R.
Thanks in advance for your help.
--
View this message in context:
2013 Jan 01
3
translate grouped data to their centroid
Given a data set with a group factor, I want to translate the numeric
variables to their
centroid, by subtracting out the group means (adding back the grand means).
The following gives what I want, but there must be an easier way using
sweep or
apply or some such.
iris2 <- iris[,c(1,2,5)]
means <- colMeans(iris2[,1:2])
pooled <- lm(cbind(Sepal.Length, Sepal.Width) ~ Species,
2009 Jun 22
1
coloring agnes plots
Hi all,
I am creating dendrograms using agnes and was wondering if it is
possible to add color to the leaves (and just the leaves).
For example, in the documentation, they have an example using the
"votes.repub" data set. If I wanted to make the word "Washington" green
(and only Washington), is it possible and if so how?
I can apply "summary" to the object
2010 Sep 21
5
removed data is still there!
I'm confused, hope someone can point out what is not obvious to me.
I thought I was creating a new data frame by 'deleting' rows from an
existing dataframe - I've tried 2 methods.
But this new data frame seems to remember values from its parent - even
though there are no occurences.
Where does it get the values versicolor and virginica from and give then a
count of 0?
What