summary.hdgsom: Summary and print methods for hdgsom objects

Description Usage Arguments Author(s) See Also Examples

View source: R/summary.hdgsom.r

Description

Summary and print methods for hdgsom 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 'hdgsom'
summary(object, ...)

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

Arguments

x

an object of class hdgsom.

object

an object of class hdgsom.

...

not used.

Author(s)

Alex Hunziker

See Also

train.hdgsom, train_xy.hdgsom

Examples

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

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

#summarize
summary(hdgsom.iris)

alecuba16/HDGSOM documentation built on April 11, 2020, 5:06 a.m.