gpt4 book ai didi

javascript - 从多行中获取每一行的特定值

转载 作者:行者123 更新时间:2023-12-05 05:33:34 26 4
gpt4 key购买 nike

我有一个用于获取多个选定行的代码。我可以获取所有数据行,但我计划获取有值(value)的特定数据。我一直坚持获取每个选定行的优点的具体值,并想为它们的中位数编写代码。请指教。

const median = {{ employeesTable.selectedRow.data }}
return median

这是一个样本数据,我想得到的只是优点,例如 10 和 14,并得到它们的中位数。

[{
id:"15"
email:"cornflakes123@gmail.com"
employee_name:"Mark"
merits:10
},
{
id:"12"
email:"fourleaves@gmail.com"
employee_name:"Grey"
merits:14
}]

我希望显示的输出是所选优点的中值。例如,如果选择了三行,则收集它们的优点,然后给出一个中位数。

例如,如果三行的优点分别为 5、11 和 12,那么我想要的输出是显示“返回”值的中位数 11。

最佳答案

更新 2

使用以下函数获取中位数(感谢 https://stackoverflow.com/a/53660837/8820118):

let data = [
{
id: "15",
email: "cornflakes123@gmail.com",
employee_name: "Mark",
merits: 1,
},
{
id: "12",
email: "fourleaves@gmail.com",
employee_name: "Grey",
merits: 5,
},
{
id: "12",
email: "fourleaves@gmail.com",
employee_name: "Grey",
merits: 100,
},
{
id: "12",
email: "fourleaves@gmail.com",
employee_name: "Grey",
merits: 100,
},
{
id: "12",
email: "fourleaves@gmail.com",
employee_name: "Grey",
merits: 500,
},
]

function median(myData) {
const sorted = Array.from(myData.map((item) => item.merits)).sort((a, b) => a - b);
const middle = Math.floor(sorted.length / 2);

if (sorted.length % 2 === 0) {
return (sorted[middle - 1] + sorted[middle]) / 2;
}

return sorted[middle];
}

console.log(median(data));

更新

根据您的评论,您希望从数组中返回最低的值(value)。

const data = {{ employeesTable.selectedRow.data }}

//now that we have the data we can get min and max value
let min = Math.min(...data.map(item => item.merits));
let max = Math.max(...data.map(item => item.merits));

return min; //or return max

旧帖

只需从您的对象中选择键。这是一个基于您提供的代码的小示例:

const employeesTable = {
selectedRow: {
data: [
{
id: "15",
email: "cornflakes123@gmail.com",
employee_name: "Mark",
merits: 10,
},
{
id: "12",
email: "fourleaves@gmail.com",
employee_name: "Grey",
merits: 14,
},
],
},
};

//iterate over the array
for (let i = 0; i < employeesTable.selectedRow.data.length; i++) {
console.log(getMerits(i)); //return merit for that entry
}

function getMerits(index) {
return employeesTable.selectedRow.data[index].merits;
}

请提供更多详细信息,因为您的问题可能有其他含义,例如仅检索值为 10 和 14 的问题。在这种情况下,请提供更多信息以说明您要实现的目标。

关于javascript - 从多行中获取每一行的特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73798113/

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