有没有办法在Plotly中为图表添加数据源/标题,类似于client.connect()
中可以使用caption参数执行的操作:
ggplot
即,我们可以用较小的字体显示图表右下角的数据源。
答案 0 :(得分:8)
annotation
提供了一种向plotly
中的图表添加标题的简单方法:
library(plotly)
plot_ly(x=~hp, y=~mpg, data=mtcars, type="scatter", mode="marker") %>%
layout(annotations =
list(x = 1, y = -0.1, text = "Source: data I found somewhere.",
showarrow = F, xref='paper', yref='paper',
xanchor='right', yanchor='auto', xshift=0, yshift=0,
font=list(size=15, color="red"))
)