gpt4 book ai didi

r - Plotly 在 RStudio Viewer 中无法正确显示

转载 作者:行者123 更新时间:2023-12-02 01:13:15 25 4
gpt4 key购买 nike

我第一次使用 plotly 包来生成 3D 图。尽管我正在按照教程进行操作,但绘图点并未出现在 RStudio Viewer 中。只是一个空的网格。 enter image description here

library(plotly)
packageVersion('plotly')
#[1] ‘4.6.0’

mtcars$am[which(mtcars$am == 0)] <- 'Automatic'
mtcars$am[which(mtcars$am == 1)] <- 'Manual'
mtcars$am <- as.factor(mtcars$am)

p <- plot_ly(mtcars, x = ~wt, y = ~hp, z = ~qsec, color = ~am, colors = c('#BF382A', '#0C4B8E')) %>%
add_markers() %>%
layout(scene = list(xaxis = list(title = 'Weight'),
yaxis = list(title = 'Gross horsepower'),
zaxis = list(title = '1/4 mile time')))

但是,当我在网络浏览器中打开绘图时,这些点显示正常。

我在这里看到一个类似的问题:Plotly in RStudio viewer

但是更新到最新版本的RStudio后,这些点仍然没有出现。我正在使用 R 版本 3.3.3

最佳答案

plotly 的 4.6.0 版本和 Rstudio 的 1.0.143 版本之间似乎不兼容。尝试使用 plotly 的 4.5.6 版:

devtools::install_version("plotly", version = "4.5.6", 
repos = "http://cran.us.r-project.org")

它运行良好,绘图点现在出现在我的 RStudio 的最新版本中。

关于r - Plotly 在 RStudio Viewer 中无法正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43961424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com