gpt4 book ai didi

arrays - jq - 将对象列表转换为汇总对象

转载 作者:行者123 更新时间:2023-12-04 18:21:41 25 4
gpt4 key购买 nike

我有这样的 JSON 数据:

[
{
"tone_id": "anger",
"score": 0.012,
"tone_name": "Anger"
},
{
"tone_id": "disgust",
"score": 0.002,
"tone_name": "Disgust"
},
{
"tone_id": "fear",
"score": 0.14,
"tone_name": "Fear"
},
{
"tone_id": "joy",
"score": 0.42,
"tone_name": "Joy"
}
]

我想使用 将其转换为以下内容jq :
{
"anger": 0.012,
"disgust": 0.002,
"fear": 0.14,
"joy": 0.42
}

我能做的最好的是:
cat result.json | jq '.[] | { (.tone_id): .score }'

这给出了以下内容:
{
"anger": 0.012
}
{
"disgust": 0.002
}
{
"fear": 0.14
}
{
"joy": 0.42
}

I know I can easily do this using other methods. Just wanted to know if it's possible using jq one-liner?

最佳答案

单次调用单行:

 jq 'map( {(.tone_id): .score} ) | add'

(你也可以在传递给 .[] | { (.tone_id): .score } 之前用方括号包裹 add——这两种方法是等价的。)

关于arrays - jq - 将对象列表转换为汇总对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47551333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com