Spectral embedding with the normalized or the unnormalized Laplacian (Laplacian eigenmaps).
Performs spectral embedding for a given adjacency matrix.
spec.emb(A, p, norm = TRUE)
A |
|
p |
The number of dimensions. |
norm |
If |
The corrdinate matrix with p columns whose rows give the coordinates of the vertexes.
Yoshikazu Terada
library(igraph) ADM <- as.matrix( get.adjacency(graph.famous("Icosahedral")) ) #Apply some graph embedding methods LE <-spec.emb(A=ADM,2,norm=FALSE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.