File: SOM.html

package info (click to toggle)
cluster3 1.59%2Bds-3
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 5,624 kB
  • sloc: ansic: 9,948; python: 2,018; perl: 1,566; makefile: 132; sh: 27
file content (104 lines) | stat: -rw-r--r-- 4,943 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 6.6, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>SOM (Cluster 3.0 for Windows, Mac OS X, Linux, Unix)</title>

<meta name="description" content="SOM (Cluster 3.0 for Windows, Mac OS X, Linux, Unix)">
<meta name="keywords" content="SOM (Cluster 3.0 for Windows, Mac OS X, Linux, Unix)">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<link href="index.html#Top" rel="start" title="Top">
<link href="Contents.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Cluster.html#Cluster" rel="up" title="Cluster">
<link href="PCA.html#PCA" rel="next" title="PCA">
<link href="KMeans.html#KMeans" rel="prev" title="KMeans">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>


</head>

<body lang="en">
<span id="SOM"></span><div class="header">
<p>
Next: <a href="PCA.html#PCA" accesskey="n" rel="next">PCA</a>, Previous: <a href="KMeans.html#KMeans" accesskey="p" rel="prev">KMeans</a>, Up: <a href="Cluster.html#Cluster" accesskey="u" rel="up">Cluster</a> &nbsp; [<a href="Contents.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
</div>
<hr>
<span id="Self_002dOrganizing-Maps"></span><h3 class="section">4.3 Self-Organizing Maps</h3>

<img src="images/som.png" alt="images/som">

<p>Self-Organizing Maps (SOMs) is a method of cluster analysis that are somewhat related to
<i>k</i>-means
clustering. SOMs were invented in by Teuvo Kohonen in the early 1980s, and
have recently been used in genomic analysis (see Chu 1998, Tamayo 1999 and Golub
1999 in references). The Tamayo paper contains a simple explanation of the methods. A
more detailed description is available in the book by Kohonen, Self-Organizing Maps,
1997.
</p>
<p>The current implementation varies slightly from that of Tamayo et al., in that it restricts
the analysis one-dimensional SOMs along each axis, as opposed to a two-dimensional
network. The one-dimensional SOM is used to reorder the elements on whichever axes
are selected. The result is similar to the result of k-means clustering, except that, unlike in k-means clustering,
the nodes in a SOM are ordered. This tends to result in a relatively smooth
transition between groups.
</p>
<p>The options for SOMs are
</p><ul>
<li> whether or not you will organize each axis;
</li><li> the number of nodes for each axis (the default is
<i>n</i><SUP>1/4</SUP>,
where
<i>n</i>
is the number of items; the total number of clusters is then equal to the square root of the number of items);
</li><li> the number of iterations to be run.
</li></ul>

<p>The output file is of the form <samp><var>JobName</var>_SOM_GXg-Yg_AXa-Ya.txt</samp>, where <samp>GXg-Yg</samp> is
included if genes were organized, and <samp>AXg-Yg</samp> is included if arrays were organized. <samp>X</samp> and
<samp>Y</samp> represent the dimensions of the corresponding SOM.
Up to two additional files (<samp>.gnf</samp> and <samp>.anf</samp>) are written containing the vectors for
the SOM nodes.
</p>
<p>In previous versions of Cluster, only one-dimensional SOMs were supported.
The current version of the Cluster introduces two-dimensional SOMs.
</p>
<p>SOMs and hierarchical clustering:
Our original use of SOMs (see Chu et al., 1998) was
motivated by the desire to take advantage of the properties of both SOMs and hierarchical
clustering. This was accomplished by first computing a one dimensional SOM, and using
the ordering from the SOM to guide the flipping of nodes in the hierarchical tree. In
Cluster, after a SOM is run on a dataset, the GORDER and/or EORDER fields are set to
the ordering from the SOM so that, for subsequent hierarchical clustering runs, the output
ordering will come as close as possible to the ordering in the SOM without violating the
structure of the tree.
</p>
<hr>
<div class="header">
<p>
Next: <a href="PCA.html#PCA" accesskey="n" rel="next">PCA</a>, Previous: <a href="KMeans.html#KMeans" accesskey="p" rel="prev">KMeans</a>, Up: <a href="Cluster.html#Cluster" accesskey="u" rel="up">Cluster</a> &nbsp; [<a href="Contents.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
</div>



</body>
</html>