我从字面上的R示例页面中复制并粘贴此代码,它会产生错误。似乎无法让它发挥作用。
iris$id <- as.integer(iris$Species)
p <- plot_ly(iris, x = Petal.Length, y = Petal.Width,
group = Species,
xaxis = paste0('x', id), mode = 'markers')
p <- subplot(p)
Error in locator(2) : plot.new has not been called yet
p
Warning message:
In par(old.par) : calling par(new=TRUE) with no plot
以下是我正在使用的软件包版本:
packageVersion('plotly')
[1] ‘3.4.13’
有关正在发生的事情的任何想法?