Learn R Programming

GrowingSOM (version 0.1.1)

summary.gsom: Summary and print methods for gsom objects

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

"summary"(object, ...)
"print"(x, ...)

Arguments

x
an object of class gsom.
object
an object of class gsom.
...
not used.

See Also

train.gsom, train_xy.gsom

Examples

Run this code
# load some data
data(iris)
iris <- iris[1:4]

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

#summarize
summary(gsom.iris)

Run the code above in your browser using DataLab