是否有可能在R中使用plotly创建单个堆叠的柱形图

问题描述 投票:0回答:1

我有一个数据框。

    Frequency <- data.frame(Type = c("Quarterly", "halfyearly", "Yearly", "Weekly", "Other"), 
Count = c(45, 13, 3, 18, 21))

这是预期的输出

enter image description here

是否可以在R中使用plot_ly()函数来实现?

任何人都可以提出合适的解决方案来实现这一目标。在此先感谢!

r plotly bar-chart visualization
1个回答
0
投票

这样的东西?我不得不添加一个名为“ id”的列只是为了将其映射到x轴,但我认为它或多或少看起来像您想要的。

enter image description here

Frequency %>% 
    mutate(id = as.factor(1)) %>% 
    plot_ly(
    x = ~ id,
    y = ~ Count,
    color = ~Type,
    type = 'bar'
) %>% 
    layout(yaxis = list(title = 'Count'), barmode = 'stack')
© www.soinside.com 2019 - 2024. All rights reserved.