7

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 の 6 の順序で配置する必要があります。ドキュメントを閲覧してきましたが、必要なものが見つからないようです。これggplot2は を介し​​て行うことができますscale_x_continuous(breaks=c(6,12,18,24,30)

4

2 に答える 2

10

style目盛りを追加するために使用できます。

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

ここに画像の説明を入力

いくつかの例を次に示します: https://plot.ly/r/axes/

于 2016-06-14T11:01:50.917 に答える