2016-05-17 85 views
7

在plot_ly中爲subplot提供字幕我很想知道如何使用plot_ly給子圖添加不同的字幕。請提出任何提示。在這種情況下,我得到了一個標題BB。謝謝。如何使用R

p <- subplot(
     plot_ly(economics, x = date, y = uempmed)%>%layout(showlegend = FALSE, title="AA"), 
     plot_ly(economics, x = date, y = unemploy)%>%layout(showlegend = FALSE, title="BB"), 
margin = 0.05 
) 

回答

9

佈局中的title屬性指的是整個繪圖表面的標題,因此只能有一個。但是,我們可以使用文本註釋爲您的子圖創建「標題」,例如:

p <- subplot(
    plot_ly(economics, x = date, y = uempmed)%>%layout(showlegend = FALSE), 
    plot_ly(economics, x = date, y = unemploy)%>%layout(showlegend = FALSE), 
    margin = 0.05 
) 
p %>% layout(annotations = list(
list(x = 0.2 , y = 1.05, text = "AA", showarrow = F, xref='paper', yref='paper'), 
    list(x = 0.8 , y = 1.05, text = "BB", showarrow = F, xref='paper', yref='paper')) 
)