2

我的 mongodb 集合中有一个这样的 json 文档:更新的文档:

{
"_id" : ObjectId("59da4aef8c5d757027a5a614"),
"input" : "hi",
"output" : "Hi. How can I help you?",
"intent" : "[{\"intent\":\"greeting\",\"confidence\":0.8154089450836182}]",
"entities" : "[]",
"context" : "{\"conversation_id\":\"48181e58-dd51-405a-bb00-c875c01afa0a\",\"system\":{\"dialog_stack\":[{\"dialog_node\":\"root\"}],\"dialog_turn_counter\":1,\"dialog_request_counter\":1,\"_node_output_map\":{\"node_5_1505291032665\":[0]},\"branch_exited\":true,\"branch_exited_reason\":\"completed\"}}",
"user_id" : "50001",
"time_in" : ISODate("2017-10-08T15:57:32.000Z"),
"time_out" : ISODate("2017-10-08T15:57:35.000Z"),
"reaction" : "1"

}

我需要在 intent.intent 字段上执行分组,并且我正在使用带有 mongolite 库的 Rstudio。我试过的是:

pp = '[{"$unwind": "$intent"},{"$group":{"_id":"$intent.intent", "count": {"$sum":1} }}]'

stats <- chat$aggregate(
      pipeline=pp,
      options = '{"allowDiskUse":true}'
    )

print(stats)

但它不起作用,上面代码的输出是

  _id count
1  NA   727
4

1 回答 1

6

如果意图属性类型是字符串并将对象保留为字符串。我们可以将其拆分为数组\"并使用数组的第三项。

db.getCollection('test1').aggregate([
{ "$project": { intent_text : { $arrayElemAt : [ { $split: ["$intent", "\""] } ,3  ] } } },
{ "$group": {"_id": "$intent_text" , "count": {"$sum":1} }}
])

结果:

{
    "_id" : "greeting",
    "count" : 1.0
}
于 2017-10-08T18:35:10.657 回答