gomplotly在geom_bar和coord_flip似乎失败了

时间:2018-05-05 21:47:01

标签: r ggplot2 plotly r-plotly ggplotly

我可以根据需要绘制geom_bar,但是当我尝试用ggplotly函数包装它时,它不起作用。任何人都知道一个让它起作用的技巧吗?

library(ggplot2)
library(plotly)

# My df dataset
a=runif(10, min = 0, max = 1)
b=runif(10, min = -1, max = 0)
df=data.frame("p"=c(a,b),
           "g"=rep(c("a","b"),each=10),
           "type"=c(letters[1:10],letters[1:10]))


# Build the g plot
g <- ggplot(df,
             aes(x = as.factor(type), y = p, fill=g)) + 
  geom_bar(data=df[df$g == "a",] ,stat = "identity") + 
  geom_bar( data=df[df$g == "b",] ,stat = "identity") +
  coord_flip() + 
  scale_y_continuous(breaks = seq(-1, 1, 0.25), 
                     labels = paste0(abs(seq(-1, 1, 0.25)))) + 
  xlab("") +
  theme_bw()

# plot it the regular way
g

enter image description here

# plot it the ggplotly way
ggplotly(g)

enter image description here

1 个答案:

答案 0 :(得分:2)

问题可能在于分割两个geom_bar来电 - 实际上你不需要做其中两个。

另请注意,geom_col()geom_bar(stat = "identity")的作用相同。

试试这个:

g <- df %>%
    ggplot(aes(x = type, y = p, fill = g)) +
        geom_col() +
        coord_flip()

ggplotly(g)

添加缩放等等 - 为了简单起见,我放弃了其他所有内容。