我想控制 x 轴上出现的刻度线。以下代码以 5 的顺序放置刻度线(在 5、10、15 ... 30 处)
library(plotly)
df <- data.frame(x = 1:30,
y = sample(100:300, size = 30, replace = T))
p <- plot_ly(data = df, x = x, y = y, type = 'line') %>%
layout(title = 'Example plot')
p
我需要将它们按 6、12、18、24、30 的顺序排列。我一直在浏览文档,但似乎找不到我需要的东西。在ggplot2
这可以通过scale_x_continuous(breaks=c(6,12,18,24,30)
.