print.topolow | R Documentation |
Provides a concise display of key optimization results from euclidean_embedding
.
## S3 method for class 'topolow'
print(x, ...)
x |
A |
... |
Additional arguments passed to print (not used). |
The original topolow
object (invisibly). This function is called for its
side effect of printing a summary to the console.
# Create a simple dissimilarity matrix and run the optimization
dist_mat <- matrix(c(0, 2, 3, 2, 0, 4, 3, 4, 0), nrow=3)
result <- euclidean_embedding(dist_mat, ndim=2, mapping_max_iter=50,
k0=1.0, cooling_rate=0.001, c_repulsion=0.1,
verbose = FALSE)
# Print the result object
print(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.