Nothing
eurodist %>%
cmdscale(k = 6) %>%
as.data.frame() %>%
tibble::rownames_to_column(var = "city") ->
euro_mds
ggplot(euro_mds, aes(V1, V2, label = city)) +
stat_spantree() +
geom_label(alpha = .25)
ggplot(euro_mds, aes_c(aes_coord(euro_mds, "V"), aes(label = city))) +
stat_spantree() +
geom_label(aes(x = V1, y = V2), alpha = .25)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.