在图表中添加源或标题

时间:2017-07-14 12:54:43

标签: r plotly

有没有办法在Plotly中为图表添加数据源/标题,类似于client.connect()中可以使用caption参数执行的操作:

ggplot

即,我们可以用较小的字体显示图表右下角的数据源。

1 个答案:

答案 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"))
 )

enter image description here

更多详情请见herehere