charlottemcc
charlottemcc

Reputation: 47

How to control "count" in tooltip for ggplotly with filled bar plot in R

Thanks in advance for any advice you can offer! I'm hoping to be able to relabel "count" in the tooltip for a public facing interactive plot.

Here's a reproducible example:

library(plotly)
df <- data.frame(cat=c(rep("A", 5), rep("B", 7), rep("C", 10)),
                 time=c(rep("Time1", 3), rep("Time2", 13), rep("Time3", 6)))
ggplotly(ggplot(df, aes(x=time, fill=cat)) + geom_bar(position = "fill"))

I know I can control the time and category labels in the tooltip with text=paste("Category:", cat, "Time:" time), but can't seem to figure out how to give the count a more aesthetic titling.

Thanks for your time!

Upvotes: 1

Views: 469

Answers (1)

St&#233;phane Laurent
St&#233;phane Laurent

Reputation: 84589

Perhaps there's an easier solution, but you can do:

library(plotly)
df <- data.frame(cat=c(rep("A", 5), rep("B", 7), rep("C", 10)),
                 time=c(rep("Time1", 3), rep("Time2", 13), rep("Time3", 6)))
gg <- ggplotly(ggplot(df, aes(x=time, fill=cat)) + geom_bar(position = "fill"))
ggg <- plotly_build(gg)
for(i in 1:length(ggg$x$data)){
  text <- ggg$x$data[[i]]$text
  text <- gsub("count:", "Count:", text)
  text <- gsub("time:", "Time:", text)
  text <- gsub("cat:", "Cat:", text)
  ggg$x$data[[i]]$text <- text
}
ggg

Upvotes: 2

Related Questions