使用ggimage在R中将图像添加到标签中

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

Using ggimage to add images to labels in R

问题

以下是您要翻译的内容:

有没有办法在饼图中使用geom_image来替换文本标签为图像?

我尝试使用下面的代码。

但是,图像的位置与标签不同。 (我包括了标签以显示图像应放置的位置,但我想要删除文本标签并将其替换为图像)

  1. library(tidyverse)
  2. library(ggplot2)
  3. library(ggimage)
  4. # 示例数据
  5. labels <- c("Category 1", "Category 2")
  6. values <- c(20, 80)
  7. # 创建数据框
  8. df <- data.frame(labels, values)
  9. df$image <- 'https://www.r-project.org/logo/Rlogo.png'
  10. # 创建饼图
  11. ggplot(df, aes(x = "", y = values, fill = labels)) +
  12. geom_bar(stat = "identity", width = 1) +
  13. coord_polar("y", start = 0) +
  14. theme_void() +
  15. geom_text(aes(y = values, label = labels), color = "white", size = 5,
  16. position = position_stack(vjust = 0.5)) +
  17. theme(legend.position = "none") +
  18. geom_image(aes(image = image)) +
  19. scale_fill_brewer(palette = "Set1")

image
我看到其他人使用ggtext和其他包类似的方法,但想知道ggimage是否具备这个功能。

英文:

Is there a way to use geom_image to replace text labels to images in a pie chart?

I tried using the code below.

However, the images aren't in the same position as the labels. (I included the labels to show where the images should go but I want to remove the text labels and replace them with the images)

  1. library(tidyverse)
  2. library(ggplot2)
  3. library(ggimage)
  4. # Sample data
  5. labels &lt;- c(&quot;Category 1&quot;, &quot;Category 2&quot;)
  6. values &lt;- c(20, 80)
  7. # Create a data frame
  8. df &lt;- data.frame(labels, values)
  9. df$image &lt;- &#39;https://www.r-project.org/logo/Rlogo.png&#39;
  10. # Create the pie chart
  11. ggplot(df, aes(x = &quot;&quot;, y = values, fill = labels)) +
  12. geom_bar(stat = &quot;identity&quot;, width = 1) +
  13. coord_polar(&quot;y&quot;, start = 0) +
  14. theme_void() +
  15. geom_text(aes(y = values, label = labels), color = &quot;white&quot;, size=5,
  16. position = position_stack(vjust = 0.5)) +
  17. theme(legend.position = &quot;none&quot;) +
  18. geom_image(aes(image=image)) +
  19. scale_fill_brewer(palette=&quot;Set1&quot;)

image
I have seen others do something similar using ggtext and other packages but was wondering if ggimage has the capacity to do this.

答案1

得分: 0

这是代码部分,不需要翻译。

英文:

It always a matter of the position (or the grouping). (; To place the images at the same position as the labels you have to use the same position= for geom_image as for geom_text:

  1. library(tidyverse)
  2. library(ggplot2)
  3. library(ggimage)
  4. # Sample data
  5. labels &lt;- c(&quot;Category 1&quot;, &quot;Category 2&quot;)
  6. values &lt;- c(20, 80)
  7. # Create a data frame
  8. df &lt;- data.frame(labels, values)
  9. df$image &lt;- &quot;https://www.r-project.org/logo/Rlogo.png&quot;
  10. # Create the pie chart
  11. ggplot(df, aes(x = &quot;&quot;, y = values, fill = labels)) +
  12. geom_bar(stat = &quot;identity&quot;, width = 1) +
  13. coord_polar(&quot;y&quot;, start = 0) +
  14. theme_void() +
  15. geom_text(aes(y = values, label = labels),
  16. color = &quot;white&quot;, size = 5,
  17. position = position_stack(vjust = 0.5)
  18. ) +
  19. theme(legend.position = &quot;none&quot;) +
  20. geom_image(aes(image = image), position = position_stack(vjust = 0.5)) +
  21. scale_fill_brewer(palette = &quot;Set1&quot;)

使用ggimage在R中将图像添加到标签中<!-- -->

huangapple
  • 本文由 发表于 2023年6月6日 14:18:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/76411902.html
匿名

发表评论

匿名网友

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

确定