NEWS (original) (raw)
The wizard function Euclidify was added to run all the workflow needed to get the main output automatically.
# Old (deprecated):
result <- create_topolow_map(distance_matrix = my_matrix,
# ... other parameters
)
# New (recommended):
result <- euclidean_embedding(dissimilarity_matrix = my_matrix, # parameter name changed
# ... other parameters (unchanged)
)Included figures in the vignette.