0

我正在使用蒙古石。我的数据集中有一个数组,我想使用 $unwind 对其进行解构。我做了以下事情:

pUsers <- pUsers$aggregate(pipeline = {"$unwind" : "$profile.hobbies"})

结果:

Error in "$unwind":"$profile.hobbies" : NA/NaN argument
In addition: Warning messages:
1: In inherits(x, "bson") : NAs introduced by coercion
2: In inherits(x, "bson") : NAs introduced by coercion

看到错误消息,我尝试使用以下代码排除具有 NA 值的数据:

pUsers <- pUsers$aggregate(pipeline = '[
        {"$match" : {"$profile.hobbies" : {"$exists" : true}}}, 
        {"$unwind" : "$profile.hobbies"}]')

结果:

Error: unknown top level operator: $profile.hobbies

有人可以解释我犯的错误吗?此外,我怎样才能正确展开我的数据框?谢谢!

4

1 回答 1

0

正如所评论的,R 的语法不符合 Mongo 的查询调用,特别是与可以在这些位置支持这些符号的其他语言不同的大括号和冒号。

因此,请务必使用所有需要的符号(例如方括号)将整个调用包装在带引号的字符串中。具体如下:

pUsers <- pUsers$aggregate(pipeline = {"$unwind" : "$profile.hobbies"})

应修改为

pUsers <- pUsers$aggregate(pipeline = '[{"$unwind" : "$profile.hobbies"}]')
于 2018-09-04T19:00:04.447 回答