summary.missSOM {missSOM} | R Documentation |
Summary and print methods for missSOM
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, the distance functions used, and the mean distance of an
object to its closest codebookvector, which is an indication of the quality of the mapping.
## S3 method for class 'missSOM'
summary(object, ...)
## S3 method for class 'missSOM'
print(x, ...)
## S3 method for class 'missSOM'
print(x, ...)
object |
a |
... |
Not used. |
x |
a |
No return a value.
data(wines)
som.wines <- imputeSOM(scale(wines), grid = somgrid(5, 5, "hexagonal"))
som.wines
summary(som.wines)