如何(自动)使用ggplot2和treemapify向treemap添加自定义图标?

huangapple go评论86阅读模式
英文:

How to (automatically) add custom icon to a treemap using ggplot2 and treemapify?

问题

以下是代码的翻译部分:

  1. 我正在尝试通过矩形树图的方式来展示土地覆盖数据。我成功创建了一个简单的矩形树图,并“获取”了一些图标。不幸的是,我难以将这些图标包含到矩形树图中,这将有助于展示土地覆盖的类型。
  2. 这是一个示例代码:
  3. # 创建数据框
  4. df <- data.frame(category = c("森林", "绿地", "农田"),
  5. 面积 = c(20, 10, 70)
  6. )
  7. df$标签 = paste0(df$area, "%")
  8. # 加载图标
  9. library(magick)
  10. icon_crops2 <- image_read("https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Agriculture_-_The_Noun_Project.svg/512px-Agriculture_-_The_Noun_Project.svg.png")
  11. icon_forest2 <- image_read("https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/BSicon_FOREST.svg/500px-BSicon_FOREST.svg.png")
  12. icon_greenland2 <- image_read("https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Wikidata_Morse_code_logo_grassroots.svg/600px-Wikidata_Morse_code_logo_grassroots.svg.png")
  13. # 将图标添加到数据框
  14. df$icons = c(icon_crops2, icon_forest2, icon_greenland2)
  15. print(df$icons)
  16. # 绘制不带图标的矩形树图
  17. library(ggplot2)
  18. library(treemapify)
  19. ggplot(df, aes(area = area,
  20. fill = category,
  21. label = paste(category,label,sep="\n"),
  22. subgroup = category)) +
  23. geom_treemap() +
  24. geom_treemap_text(colour = "black", place = "center") +
  25. theme(legend.position = "none")

希望这对你有所帮助。

英文:

I'm trying to illustrate land cover data by the means of a treemap. I managed to create a simple treemap and to "grab" some icons. Unfortunately, I struggle to include these icons into the treemap which would help to illustrate the type of land cover.

This is an example code:

  1. # create dataframe
  2. df &lt;- data.frame(category = c(&quot;forest&quot;, &quot;greenland&quot;, &quot;crops&quot;),
  3. area = c(20, 10, 70)
  4. )
  5. df$label = paste0(df$area,&quot;%&quot;)
  6. # load icons
  7. library(magick)
  8. icon_crops2 &lt;- image_read(&quot;https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Agriculture_-_The_Noun_Project.svg/512px-Agriculture_-_The_Noun_Project.svg.png&quot;)
  9. icon_forest2 &lt;- image_read(&quot;https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/BSicon_FOREST.svg/500px-BSicon_FOREST.svg.png&quot;)
  10. icon_greenland2 &lt;- image_read(&quot;https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Wikidata_Morse_code_logo_grassroots.svg/600px-Wikidata_Morse_code_logo_grassroots.svg.png&quot;)
  11. # add icons to dataframe
  12. df$icons = c(icon_crops2, icon_forest2, icon_greenland2)
  13. print(df$icons)
  14. # plot treemap without icons
  15. library(ggplot2)
  16. library(treemapify)
  17. ggplot(df, aes(area = area,
  18. fill = category,
  19. label = paste(category,label,sep=&quot;\n&quot;),
  20. subgroup = category)) +
  21. geom_treemap() +
  22. geom_treemap_text(colour = &quot;black&quot;, place = &quot;center&quot;) +
  23. theme(legend.position = &quot;none&quot;)

This results in the following image:
如何(自动)使用ggplot2和treemapify向treemap添加自定义图标?

Yet, I would like to have something like this (created with GIMP):
如何(自动)使用ggplot2和treemapify向treemap添加自定义图标?

Although I could insert the icons manually, e.g. by using GIMP, I'm looking for an automatic way.

Anyone has an idea how to do this?

答案1

得分: 2

以下是翻译好的代码部分:

  1. # 创建数据框
  2. df <- data.frame(
  3. category = c("forest", "greenland", "crops"),
  4. area = c(20, 10, 70)
  5. )
  6. df$label <- paste0(df$area, "%")
  7. # 绘制不带图标的树状图
  8. library(ggplot2)
  9. library(treemapify)
  10. library(ggimage)
  11. dat_image <- treemapify(df,
  12. area = "area",
  13. layout = "squarified",
  14. start = "bottomleft"
  15. ) %>%
  16. transform(x = .5 * (xmin + xmax), y = .5 * (ymin + ymax))
  17. dat_image$icons <- c(
  18. "https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Agriculture_-_The_Noun_Project.svg/512px-Agriculture_-_The_Noun_Project.svg.png",
  19. "https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/BSicon_FOREST.svg/500px-BSicon_FOREST.svg.png",
  20. "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Wikidata_Morse_code_logo_grassroots.svg/600px-Wikidata_Morse_code_logo_grassroots.svg.png"
  21. )
  22. ggplot(df, aes(
  23. area = area,
  24. fill = category,
  25. label = label,
  26. subgroup = category
  27. )) +
  28. geom_treemap() +
  29. geom_treemap_text(colour = "black", place = "center") +
  30. scale_x_continuous(limits = c(0, 1), expand = c(0, 0)) +
  31. scale_y_continuous(limits = c(0, 1), expand = c(0, 0)) +
  32. geom_image(data = dat_image, aes(x = x, y = y, image = icons), inherit.aes = FALSE, nudge_y = .1, size = .1) +
  33. theme(
  34. legend.position = "none",
  35. axis.line = element_blank(),
  36. axis.text = element_blank(),
  37. axis.title = element_blank(),
  38. axis.ticks = element_blank()
  39. )

上面的代码是使用ggimage::geom_image以及treemapify::treemapify()创建包含矩形坐标的数据集,并将图像放置在正确的矩形中的示例代码。如果您需要更多帮助或有其他问题,请随时提出。

英文:

One option would be to use ggimage::geom_image. To place the images we could use treemapify::treemapify() to create a dataset with the coordinates of the rectangles which could then be passed to geom_image to place the images in the right rectangles:

  1. # create dataframe
  2. df &lt;- data.frame(
  3. category = c(&quot;forest&quot;, &quot;greenland&quot;, &quot;crops&quot;),
  4. area = c(20, 10, 70)
  5. )
  6. df$label &lt;- paste0(df$area, &quot;%&quot;)
  7. # plot treemap without icons
  8. library(ggplot2)
  9. library(treemapify)
  10. library(ggimage)
  11. dat_image &lt;- treemapify(df,
  12. area = &quot;area&quot;,
  13. layout = &quot;squarified&quot;,
  14. start = &quot;bottomleft&quot;
  15. ) |&gt;
  16. transform(x = .5 * (xmin + xmax), y = .5 * (ymin + ymax))
  17. dat_image$icons &lt;- c(
  18. &quot;https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Agriculture_-_The_Noun_Project.svg/512px-Agriculture_-_The_Noun_Project.svg.png&quot;,
  19. &quot;https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/BSicon_FOREST.svg/500px-BSicon_FOREST.svg.png&quot;,
  20. &quot;https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Wikidata_Morse_code_logo_grassroots.svg/600px-Wikidata_Morse_code_logo_grassroots.svg.png&quot;
  21. )
  22. ggplot(df, aes(
  23. area = area,
  24. fill = category,
  25. label = label,
  26. subgroup = category
  27. )) +
  28. geom_treemap() +
  29. geom_treemap_text(colour = &quot;black&quot;, place = &quot;center&quot;) +
  30. scale_x_continuous(limits = c(0, 1), expand = c(0, 0)) +
  31. scale_y_continuous(limits = c(0, 1), expand = c(0, 0)) +
  32. geom_image(data = dat_image, aes(x = x, y = y, image = icons), inherit.aes = FALSE, nudge_y = .1, size = .1) +
  33. theme(
  34. legend.position = &quot;none&quot;,
  35. axis.line = element_blank(),
  36. axis.text = element_blank(),
  37. axis.title = element_blank(),
  38. axis.ticks = element_blank()
  39. )

如何(自动)使用ggplot2和treemapify向treemap添加自定义图标?<!-- -->

huangapple
  • 本文由 发表于 2023年3月7日 00:40:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/75653485.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定