gpt4 book ai didi

r - Plotly:如何更改默认模式栏按钮?

转载 作者:行者123 更新时间:2023-12-04 15:28:06 24 4
gpt4 key购买 nike

我正在生成绘图并使用 shinyapps 发布来 self 的国家的 COVID 数据。

但是当我生成绘图时默认的模式栏按钮是“缩放”功能,这使得它在智能手机上的使用变得复杂:

enter image description here

我需要“平移”功能是默认按钮,但我可以找到解决方案。

enter image description here

提前致谢。

最佳答案

只需包括:

fig <- fig %>% layout(dragmode='pan')

这会将您的默认激活菜单选项从...更改

enter image description here

...到:

enter image description here

完整代码:

x <- c(1:100)
random_y <- rnorm(100, mean = 0)
data <- data.frame(x, random_y)

fig <- plot_ly(data, x = ~x, y = ~random_y, type = 'scatter', mode = 'lines')

fig <- fig %>% layout(dragmode='pan')
fig

希望这就是您要找的!如果没有,请随时告诉我。

关于r - Plotly:如何更改默认模式栏按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61855559/

24 4 0