summary.gsom: Summary and print methods for gsom objects

Description Usage Arguments Author(s) See Also Examples

Description

Summary and print methods for gsom objects. The print method shows the dimensions and the topology of the map; if information on the training data is included, the summary method additionally prints information on the size of the data and the mean distance of an object to its closest node, which is an indication of the quality of the mapping.

Usage

1
2
3
4
5
## S3 method for class 'gsom'
summary(object, ...)

## S3 method for class 'gsom'
print(x, ...)

Arguments

x

an object of class gsom.

object

an object of class gsom.

...

not used.

Author(s)

Alex Hunziker

See Also

train.gsom, train_xy.gsom

Examples

1
2
3
4
5
6
7
8
9
# load some data
data(iris)
iris <- iris[1:4]

#make a gsom map
gsom.iris <- train.gsom(iris)

#summarize
summary(gsom.iris)

alexhunziker/GrowingSOM documentation built on May 10, 2019, 8:52 a.m.