gpt4 book ai didi

r - 在R Shiny而不是底部的绘图顶部显示X轴?

转载 作者:行者123 更新时间:2023-12-05 00:49:17 28 4
gpt4 key购买 nike

如何在 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

最佳答案

您可以在 layout.xaxis

中使用 side ="top"
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

关于r - 在R Shiny而不是底部的绘图顶部显示X轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44034368/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com