R中的带状图

时间:2018-02-01 07:58:48

标签: r bar-chart

我在R实现中搜索(可能是java脚本上的html widjet)带状样式的堆积条形图,它允许您查看动态中每个类别的评级更改。 它看起来像power bi desktop中的功能区图表 enter image description here

搜索rseek.org没有给出任何结果。

2 个答案:

答案 0 :(得分:3)

首先:根本不是那种带状条形堆积条形图的粉丝;虽然色彩鲜艳,时尚,但很难综合相关信息。但那只是我的意见。

您可以尝试使用ggplot2geom_ribbon中制作类似的地图。请参阅下面的最小示例:

# Sample data
set.seed(2017);
one <- sample(5:15, 10);
two <- rev(one);
df <- cbind.data.frame(
    x = rep(1:10, 2),
    y = c(one, two),
    l = c(one - 1, two - 1),
    h = c(one + 1, two + 1),
    id = rep(c("one", "two"), each = 10));


require(ggplot2);
ggplot(df, aes(x = x, y = y)) +
    geom_ribbon(aes(ymin = l, ymax = h, fill = id), alpha = 0.4) +
    scale_fill_manual(values = c("#E69F00", "#56B4E9"));

enter image description here

如果您需要交互性,可以将其包含在plotly::ggplotly内。

答案 1 :(得分:1)