我有一个绘图,正在使用shinyplotlyggplot2中渲染。但是,我不希望出现在悬停时出现的选项栏。有没有办法使用ggplotly(p)并删除选项栏?

最佳答案

简短版本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)

关于r - 如何从ggplotly图中删除选项栏?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40223308/

10-11 07:49