map {missSOM} | R Documentation |
Map data to a supervised or unsupervised SOM
Description
Map a data onto a trained SOM.
Usage
map(x, ...)
## S3 method for class 'missSOM'
map(x, newdata, maxNA.fraction = x$maxNA.fraction, ...)
Arguments
x |
an object of class |
... |
Currently ignored. |
newdata |
a |
maxNA.fraction |
parameters that usually will be taken from the |
Value
A list with elements
unit.classif |
a vector of units that are closest to the objects in the data. |
dists |
distances of the objects to the closest units. Distance measures are the same ones used in training the map. |
See Also
Examples
data(wines)
set.seed(7)
training <- sample(nrow(wines), 150)
Xtraining <- scale(wines[training, ])
somnet <- imputeSOM(Xtraining, somgrid(5, 5, "hexagonal"))
map(somnet, scale(wines[-training, ],
center=attr(Xtraining, "scaled:center"),
scale=attr(Xtraining, "scaled:scale")))
[Package missSOM version 1.0.1 Index]