3

我是 plot.ly 的新手,前几天我刚刚从 R 中绘制了我的第一个散点图——太棒了!

testplot <- ggplot(a, aes(OR_Edu, OR_Illn, color=Country, size=total)) + geom_point()
py$ggplotly(testplot)

https://plot.ly/~SyTpp/14/or-illn-vs-or-edu/

现在,我想更改将鼠标悬停在数据点上时弹出的工具提示或小信息窗口。在这种情况下,我对 y 坐标不感兴趣,但我想显示国家名称和人口规模,我将其映射到 aestectic 规模。

理想情况下,我想知道我是否/如何可以自定义信息窗口,甚至可能在我的数据框中显示我没有在 aes() 中给出图的每个国家/地区的变量,例如一个国家/地区的 GDP 等。

谢谢!

4

1 回答 1

0

问题和答案最初发布在Using 2+ legends from R to plotly / plot.ly

要编辑悬停框中显示的内容:

# Load "plotly"
library(plotly)
# Open a Plotly connection
py <- plotly()

# Retrieve a Plotly graph in R
hover_text <- py$get_figure("PlotBot", 81)

str(hover_text$data)
# This list has 4 elements, which all have dimension (attribute) 'text'

# You can overwrite them one by one, say
hover_text$data[[1]]$text[1]
hover_text$data[[1]]$text[1] <- "US"

# If you need something functional, I would recommend defining the necessary
# functions and using sapply()

# Plotly graph with hover text we just edited
py$plotly(hover_text$data, kwargs=list(layout=hover_text$layout))
于 2014-11-19T01:43:53.963 回答