如何从ggplotly图中删除选项栏?

时间:2016-10-24 16:34:34

标签: r ggplot2 shiny plotly shinydashboard

我有一个使用shinyplotlyggplot2中呈现的情节。但是,我不希望显示悬停时出现的选项栏。有没有办法使用ggplotly(p)并删除选项栏?

1 个答案:

答案 0 :(得分:9)

community plotly短版本有一个很好的答案:

library(plotly)
set.seed(100)
d <- diamonds[sample(nrow(diamonds), 1000), ]

使用ggplotly

p <- ggplot(d, aes(carat, price)) + geom_point()
ggplotly(p) %>% config(displayModeBar = F)

如果你没有使用ggplotly,你可以这样做:

plot_ly(d, x = carat, y = price, text = paste("Clarity: ", clarity),
mode = "markers", color = carat, size = carat) %>% config(displayModeBar = F)