0

当使用来自http://nicolewhite.github.io/2014/06/30/create-shiny-app-neo4j-graphene.html的这个例子时... startGraph 函数给出一个错误

> library(RNeo4j)
> graph = startGraph("http://localhost:7474/db/data/") 
  Error: Success: (200) OK
> importSample(graph, "dfw")
  Error in importSample(graph, "dfw") : object 'graph' not found
> 

neo4j 社区版服务器版本 2.3.2 正在运行,并且在 neo4j-server.properties 文件中使用以下语句关闭身份验证:'dbms.security.auth_enabled=false'

请问有没有其他人遇到过这个问题并有解决方案?

4

1 回答 1

2

这是由 httr v1.0.0 和 httr v1.1.0 之间的重大更改引入的错误。它已在 RNeo4j v1.6.3 中修复,现在可在 CRAN 上使用使用 R更新 RNeo4jinstall.packages("RNeo4j")并重新启动。

于 2016-01-29T23:31:34.943 回答