在R Shiny而不是Bottom中的Plotly Plot顶部显示X轴?

时间:2017-05-17 20:37:25

标签: r shiny plotly

如何在Plotly水平条形图的顶部而不是在底部显示x轴?在顶部和底部显示x轴也可以。该图将显示在R Shiny中,并且必须是Plotly而不是ggplotly。谢谢!

来自https://plot.ly/r/horizontal-bar-charts/的示例:

library(plotly)
plot_ly(x = c(20, 14, 23), 
y = c('giraffes', 'orangutans', 'monkeys'), 
type = 'bar', 
orientation = 'h')

编辑:HubertL提供了一个解决方案(谢谢!),它将x轴置于顶部,但随后与图表标题重叠。我没有说明我正在使用标题。有没有办法让x轴标题和x轴刻度不与图标题重叠?

plot_ly(x = c(20, 14, 23), 
        y = c('giraffes', 'orangutans', 'monkeys'), 
        type = 'bar', 
        orientation = 'h') %>%
   layout(xaxis = list(side ="top", 
          title = "EXAMPLE X AXIS TITLE"), 
          title = "EXAMPLE PLOT TITLE")

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以在side ="top"

中使用layout.xaxis
plot_ly(x = c(20, 14, 23), 
        y = c('giraffes', 'orangutans', 'monkeys'), 
        type = 'bar', 
        orientation = 'h') %>%
  layout(xaxis = list(side ="top" ) ) 

enter image description here