微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 echarts4r `e_pie` 饼图中显示计数和百分比

如何解决在 echarts4r `e_pie` 饼图中显示计数和百分比

我想在由 echarts4r 的 e_pie 创建的圆环图中绘制计数和/或百分比。

这是文档的 link

以下是文档中的示例,生成以下不带计数和百分比的圆环图:

mtcars %>% 
  head() %>% 
  dplyr::mutate(model = row.names(.)) %>% 
  e_charts(model) %>% 
  e_pie(carb,radius = c("50%","70%")) %>% 
  e_title("Donut chart")

enter image description here

我正在寻找的是从 R plotly 中实现的东西:

mtcars %>% 
  head() %>% 
  dplyr::mutate(model = row.names(.)) %>% 
  plot_ly(labels = ~ model,values = ~ carb,textinfo = 'value+percent',marker = list(colors = c("#ABDDDE","#F8AFA8"),line = list(color = '#000000',width = 0.75)
                                  )
          ) %>%
    add_pie(hole = 0.6) %>%
    layout(title = " Donut chart",showlegend = T)

enter image description here

解决方法

您可以使用 e_labels 定义标签并使用 e_titlee_legend 对齐文本:

mtcars %>% 
  head() %>% 
  dplyr::mutate(model = row.names(.)) %>% 
  e_charts(model) %>% 
  e_pie(carb,radius = c("50%","70%"))  %>% 
  e_title("Donut chart",textAlign  = "center",left ="50%") %>%
  e_labels(show = TRUE,formatter = "{c} \n {d}%",position = "inside") %>%
  e_legend(right = 0,orient = "vertical")

在文档中,格式化程序 {c} 和 {d} 被列为

{c}:数据项的值。
{d}:百分比。

enter image description here

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。