密谋代码-查看器图不显示

时间:2019-05-01 19:08:59

标签: r ggplot2 plotly ggplotly

我正在R:https://plot.ly/r/animations/

中运行Slider函数的示例代码(示例2)

我只想简单复制给出的示例。

但是,该图形没有显示在我的查看器中。

这是我在R中运行的代码:

 library(plotly)
library(gapminder)

p <- gapminder %>%
  plot_ly(
    x = ~gdpPercap, 
    y = ~lifeExp, 
    size = ~pop, 
    color = ~continent, 
    frame = ~year, 
    text = ~country, 
    hoverinfo = "text",
    type = 'scatter',
    mode = 'markers'
  ) %>%
  layout(
    xaxis = list(
      type = "log"
    )
  )

我并没有按照此处描述的方式进行更改。

可以帮助我并告诉我为什么图表不显示吗?

1 个答案:

答案 0 :(得分:1)

我也尝试从一开始就运行代码,但也没有成功。 基本上,问题是:

IFoo

我认为您只需要将dplyr更新到最新版本0.7.7。

IFoo

还要检查:

  • 任何大于几Kb的软件包都会显示以下消息:
Evaluation error: `as_dictionary()` is defunct as of rlang 0.3.0 Please use `as_data_pronoun()` instead.
     

无法将临时安装'C:\ Users [myname] \ R \ win-library \ 3.4 \ file2b884fc37c13 \ packagename'移至'C:\ Users [myname] \ R \ win-library \ 3.4 \ packagename'< / p>

  • 如果是,请输入:install.packages("dplyr") #or update current version
    并将第140行 Warning in install.packages : 修改为trace(utils:::unpackPkgZip,edit = T)

然后,您可以运行代码并打印Sys.sleep(0.5)
Check out the plot

btw真酷!