首页 > 解决方案 > R:使用 Plotly() 的水平堆积条形图

问题描述

我正在尝试使用 plotly 绘制水平堆积条形图。layout(barmode = 'stack')但是即使指定了,我也会得到水平条形图orientation = "h"

这是我需要绘制为堆积图的数据

    Var1 Freq percentage
1 Tool 1  104         35
2 Tool 2   81         28
3 Tool 3   36         12
4 Tool 4   30         10
5 Tool 5   23          8
6 Tool 6   10          3
7 Tool 7    8          3
8 Tool 8    2          1

这是用于绘制图表的代码plotly

plot_ly(tooldf, x = tooldf$percentage,
        y = tooldf$Var1, 
        type = 'bar', orientation = "h",
        name = tooldf$Var1,
        text = paste(tooldf$percentage,"%"),
        textposition = 'top',
        hoverinfo = 'text',
        hovertext = paste('Tool: ', tooldf$Var1,
                          '<br> % of Usage: ', paste(tooldf$percentage,"%"))) %>%
  layout(barmode = 'stack')

谁能帮我在 R 中绘制水平堆积图?

标签: rplotlybar-chart

解决方案


您缺少另一个变量。现在你只是通过 x 和 y 轴,你想如何堆叠它?我引入了一个新的虚拟变量,称为Type下面。

a <- "Var1 Freq percentage
Tool1  104         35
Tool2   81         28
Tool3   36         12
Tool4   30         10
Tool5   23          8
Tool6   10          3
Tool7    8          3
Tool8    2          1"

tooldf <- read.table(text = a, header = TRUE) 

tooldf <- tooldf %>% mutate(Type = Freq > mean(Freq))

library(plotly)

tooldf %>%
  plot_ly(
    x = ~percentage
    ,y = ~Type
    ,color = ~Var1
    ,name = ~Var1
    ,type = "bar"
    ,orientation = "h"
  ) %>%
  layout(
    barmode = "stack"
  )

在此处输入图像描述


推荐阅读