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

How can I add a caption to an R plotly scatterplot?

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

我看过这个帖子: 但此处的标题与 x-axis 标题内联。

我似乎看不到情节下方的标题和 x-axis 标题。

从你link的post开始,你需要在plot_lylayout中设置margin然后改变x,以及 annotations

中的 y
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"))
  )