控制哪些刻度线/标签出现在x轴上?

时间:2016-06-14 10:50:57

标签: r plotly r-plotly

我希望控制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)完成此操作。

2 个答案:

答案 0 :(得分:6)

您可以使用style添加刻度线:

p <- plot_ly(data = df, x = x, y = y, type = 'line') %>%
    layout(title = 'Example plot', xaxis = list(autotick = F, dtick = 6))
p

enter image description here

以下是一些示例:https://plot.ly/r/axes/

答案 1 :(得分:0)

如果您需要不均匀的间距,则可以使用tickvals,它需要如下所示的tickmode =“ array”

%>%
  layout(xaxis = list(autotick = F, tickmode = "array", tickvals = c(6,12,24)))