如何为R散点图添加标题?

时间:2019-04-04 14:53:57

标签: r r-plotly

我正试图在基本的plot_ly上添加标题,以包含有关散点图的更多信息。

我看过这个线程: plotly adding a source or caption to a chart,但此处的标题与x轴标题一致。

我似乎无法在标题和x轴标题的下方找到标题。

1 个答案:

答案 0 :(得分:0)

从链接到的帖子开始,需要在margin plot_ly中设置layout,然后在xy中进行更改annotations

library(plotly)
plot_ly(x=~hp, y=~mpg, data=mtcars, type="scatter", mode="marker") %>% 
  layout(margin = list(b=160), ##bottom margin in pixels
         annotations = 
           list(x = 0.5, y = -0.75, #position of text adjust as needed 
                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