在查询中使用数组的中值作为参数

发布于 2025-01-23 13:53:26 字数 347 浏览 0 评论 0原文

我想将结果中位数用作计算“较大”的参数。我该怎么做?

{
  "h": {
  "data": 
    [1,3,5,2,6,8,4,23,7,3]
  }
}

jsonata expression:
[{
    "median" : $sort(h.data)[5],
    "larger" : h.data.($ > 5)
}]   

https://try.jsonata.org/1x8emp3ok

I want to use the resulting median as the parameter for calculating "larger". How can I do this?

{
  "h": {
  "data": 
    [1,3,5,2,6,8,4,23,7,3]
  }
}

jsonata expression:
[{
    "median" : $sort(h.data)[5],
    "larger" : h.data.($ > 5)
}]   

https://try.jsonata.org/1x8emp3oK

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_失温 2025-01-30 13:53:26

解决方案 - 您缺少的密钥是变量。另外,您的集合的中位数为4.5,而不是5,因为值甚至是,因此中位数变为平均两个中间数的平均值

在我的解决方案中,我计算中位数,使用$ variable_name:=<计算>语法分配给变量,并在数组过滤中进一步参考该结果。

请记住,如果您使用变量,则必须包裹整个表达式(...)

Solution - The key you're missing is the usage of variables. Also, the median of your set is 4.5, not 5 because the count of values is even, so the median becomes an average of two middle numbers.

In my solution, I calculate median, assign it to a variable using $variable_name := <calculation> syntax, and refer to that result further in the array filtering.

Keep in mind that if you're using variables, whole expression must be wrapped in parenthesis ( ... ).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文