从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 =假'
有没有其他人遇到过这个问题,请找一个解决方案吗?
答案 0 :(得分:2)
这是由httr v1.0.0和httr v1.1.0之间的重大变化引入的错误。在RNeo4j v1.6.3中已经fixed,现在可以在CRAN上使用。使用install.packages("RNeo4j")
更新RNeo4j并重新启动R.