Methods for external operations on diffusion maps

# S4 method for DiffusionMap
print(x)

# S4 method for DiffusionMap
show(object)

Arguments

x, object

A DiffusionMap

Value

The DiffusionMap object (print), or NULL (show), invisibly

See also

Examples

data(guo) dm <- DiffusionMap(guo) print(dm)
#> DiffusionMap (20 Diffusion components and 428 observations) #> eigenvalues: Named num [1:20] 0.953 0.837 0.77 0.753 0.679 ... #> - attr(*, "names")= chr [1:20] "DC1" "DC2" "DC3" "DC4" ... #> eigenvectors: num [1:428, 1:20] -0.0506 -0.0503 -0.0427 -0.0468 -0.0497 ... #> ..colnames: chr [1:20] "DC1" "DC2" "DC3" "DC4" ... #> optimal_sigma: Named num [1:428] 7.69 7.63 9.19 6.76 6.35 ... #> - attr(*, "names")= chr [1:428] "10" "11" "12" "13" ... #> distance: chr "euclidean"
show(dm)
#> DiffusionMap (20 Diffusion components and 428 observations) #> eigenvalues: Named num [1:20] 0.953 0.837 0.77 0.753 0.679 ... #> - attr(*, "names")= chr [1:20] "DC1" "DC2" "DC3" "DC4" ... #> eigenvectors: num [1:428, 1:20] -0.0506 -0.0503 -0.0427 -0.0468 -0.0497 ... #> ..colnames: chr [1:20] "DC1" "DC2" "DC3" "DC4" ... #> optimal_sigma: Named num [1:428] 7.69 7.63 9.19 6.76 6.35 ... #> - attr(*, "names")= chr [1:428] "10" "11" "12" "13" ... #> distance: chr "euclidean"