📜  Collect.js 中位数() 方法

📅  最后修改于: 2022-05-13 01:56:21.813000             🧑  作者: Mango

Collect.js 中位数() 方法

median() 方法用于返回集合元素的中值或集合中给定键的中值。

句法:

collect(array).median(key)

参数: collect() 方法采用一个参数,该参数转换为集合,然后对其应用 median() 方法。 median() 方法将键作为参数保存。

返回值:此方法返回集合元素的中位数。

模块安装:使用以下命令从项目的根目录安装collect.js模块:

npm install collect.js

下面的例子说明了 collect.js 中的 median() 方法:

示例 1:文件名:index.js

Javascript
// Requiring the module
const collect = require('collect.js');
  
// Array containing sample values
let arr = [10, 15, -20, -25, 40, 50, -70];
  
// Creating collection object
const collection = collect(arr);
  
// Function call
const median_val = collection.median();
  
// Printing median value
console.log(median_val);


Javascript
// Requiring the module
const collect = require('collect.js');
  
// Array containing sample values
let arr = [
  {
      name: 'Rahul',
      dob: '25-10-96',
      section: 'A',
      score: 98,
  },
  {
      name: 'Aditya',
      dob: '25-10-96',
      section: 'B',
      score: 96,
  },
  {
      name: 'Abhishek',
      dob: '16-08-94',
      section: 'A',
      score: 80
  }
];
  
// Creating collection object
const collection = collect(arr);
  
// Function call
const median_val = collection.median('score');
  
// Printing median value
console.log(median_val);


使用以下命令运行index.js文件:

node index.js

输出:

-25

示例 2:文件名:index.js

Javascript

// Requiring the module
const collect = require('collect.js');
  
// Array containing sample values
let arr = [
  {
      name: 'Rahul',
      dob: '25-10-96',
      section: 'A',
      score: 98,
  },
  {
      name: 'Aditya',
      dob: '25-10-96',
      section: 'B',
      score: 96,
  },
  {
      name: 'Abhishek',
      dob: '16-08-94',
      section: 'A',
      score: 80
  }
];
  
// Creating collection object
const collection = collect(arr);
  
// Function call
const median_val = collection.median('score');
  
// Printing median value
console.log(median_val);

使用以下命令运行index.js文件:

node index.js

输出:

96