Plotly bubble charts in R remove automatically added text

Plotly bubble charts in R automatically adds size information to text.

See https://plot.ly/r/bubble-charts/

How can I prevent Plotly from adding those texts? Or remove those texts?

Thanks!

Just do this:

library(plotly)
d <- diamonds[sample(nrow(diamonds), 1000), ]
plot_ly(d, x = carat, y = price, size = carat, mode = "markers", hoverinfo = "none")

Thanks. But I do not want to remove all the text. Actually I need to label the bubbles (with state abbr.), so my mode is markers+text. The automatically added size information makes the labels unreadable.

If you use the size parameter plotly will by default add the size tooltip. One workaround is:

Nnote that the size parameter inside marker needs to be in pixels hence you’ll need to scale it up.

library(plotly)
d <- diamonds[sample(nrow(diamonds), 1000), ]

hovertxt <- paste("color = ", d$color, "<br>",
                  "Clarity = ", d$clarity, "<br>",
                  "Cut = ", d$cut, "<br>")

plot_ly(d, x = carat, y = price, mode = "markers", 
        marker = list(size = carat * 8),
        hoverinfo = "text", text = hovertxt)

2 Likes

Thanks! This sovled my problem.