我正在使用plotly
和RStudio。
plotly
在悬停时为图表中的堆积条提供了错误的文字,但最顶部的条除外。
可重复的示例
df <- data.frame(
make = rep(c('Toyota', 'Honda', 'Volkswagen'),4),
segment =c(rep('high',3), rep('mid',3), rep('low',3), rep('entry',3) ),
sales=c( 25,35,75, 35,35,30, 45,25,10, 80, 80, 20)
)
df
make segment sales
1 Toyota high 25
2 Honda high 35
3 Volkswagen high 75
4 Toyota mid 35
5 Honda mid 35
6 Volkswagen mid 30
7 Toyota low 45
8 Honda low 25
9 Volkswagen low 10
10 Toyota entry 80
11 Honda entry 80
12 Volkswagen entry 20
p <- ggplot(df, aes(x=make, y=sales) ) +
geom_bar(stat="identity", aes(fill=segment), position = "stack")
ggplotly(p)
我在RStudio中获得的内容如下图所示。正如您所看到的,除了顶部堆叠的栏之外,其他所有内容都在悬停时提供了错误的文字
悬停时文字不正确 - 根据df
中sales
的正确值20
中的数据,而不是显示135
- 数据 - 12 Volkswagen entry 20
> packageVersion('ggplot2')
[1] ‘2.2.1’
> packageVersion('plotly')
[1] ‘4.5.6’
>
答案 0 :(得分:1)
也许您可以尝试添加:
p <- ggplot(df, aes(x=make, y=sales, fill=segment, text=paste("sales original value", sales))) + geom_bar(stat="identity")
ggplotly(p)
如果您只想显示销售额,您还可以使用:
ggplotly(p, tooltip = c("text"))
使用Shiny:
library(shiny)
ui <- fluidPage(
plotlyOutput("plot")
)
server <- function(input, output) {
output$plot <- renderPlotly({
p <- ggplot(df, aes(x=make, y=sales, fill=segment, text=paste("sales original value:", sales))) + geom_bar(stat="identity")
ggplotly(p, tooltip = c("text"))
})
}
shinyApp(ui, server)