0

我正在按照教程从 RStudio 访问数据科学体验中的 spark。但是,教程中列出的功能不可用:

> list_spark_kernels()
Error: could not find function "list_spark_kernels"

我有文件config.yml.Rprofile在我的主文件夹中:

> dir(all.files = TRUE)
 [1] "."                  ".."                 ".pki"               ".Rhistory"          ".Rprofile"         
 [6] ".rstudio"           "config.yml"         "ibm-sparkaas-demos" "lost+found"         "R"   

我也尝试过采购我的 .Rprofile 但这不起作用:

>  source(".Rprofile")
> list_spark_kernels()
Error: could not find function "list_spark_kernels"

list_spark_kernels()我今天早些时候尝试了该功能,效果很好。

4

1 回答 1

1

万一,任何人都面临未找到的 list_spark_kernels() 。

remove.packages("sparklyr")从 rstudio 控制台重新启动 rstudio。

重新启动将重新安装为连接到 spark 服务而创建的 sparklyr。

谢谢,查尔斯。

于 2017-05-15T20:25:26.460 回答