Description Usage Arguments Details Value Note Author(s) References See Also Examples
Converting Xcluster/Cluster output (.gtr or .atr) to R hclust file
1 2 |
file |
the path of a Xcluster/Cluster file (.gtr or .atr) |
distance |
The distance measure used with Xcluster/Cluster. This must be one of
|
labels |
a logical value indicating whether we use labels values (in the .cdt file) or not. |
fast |
a logical value indicating whether we reorganize data
like R ( |
clean |
a logical value indicating whether you want the true
distances ( |
dec |
the character used in the file for decimal points |
See xcluster for more details.
An object of class hclust which describes the tree produced by the clustering process.
Xcluster is a C program made by Gavin Sherlock that performs hierarchical clustering, K-means and SOM.
Xcluster is copyrighted. To get or have information about Xcluster: http://genome-www.stanford.edu/~sherlock/cluster.html
Cluster is a program made by Michael Eisen that performs hierarchical clustering, K-means and SOM.
Cluster is copyrighted. To get or have information about Cluster: http://rana.lbl.gov/EisenSoftware.htm
Antoine Lucas, http://mulcyber.toulouse.inra.fr/projects/amap/
Antoine Lucas and Sylvain Jasson, Using amap and ctc Packages for Huge Clustering, R News, 2006, vol 6, issue 5 pages 58-60.
xcluster
, r2xcluster
, hclust
, hcluster
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Create data
set.seed(1)
m <- matrix(rep(1,3*24),ncol=3)
m[9:16,3] <- 3 ; m[17:24,] <- 3 #create 3 groups
m <- m+rnorm(24*3,0,0.5) #add noise
m <- floor(10*m)/10 #just one digits
r2xcluster(m)
# And once you have Xcluster program:
#
#system('Xcluster -f xcluster.txt -e 0 -p 0 -s 0 -l 0')
#h <- xcluster2r('xcluster.gtr')
#plot(h,hang=-1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.