UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

14 lines (13 loc) 570 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.modeDocs = void 0; const modeDocs = exports.modeDocs = { name: 'mode', category: 'Statistics', syntax: ['mode(a, b, c, ...)', 'mode(A)', 'mode(A, a, b, B, c, ...)'], description: 'Computes the mode of all values as an array. In case mode being more than one, multiple values are returned in an array.', examples: ['mode(2, 1, 4, 3, 1)', 'mode([1, 2.7, 3.2, 4, 2.7])', 'mode(1, 4, 6, 1, 6)'], seealso: ['max', 'mean', 'min', 'median', 'prod', 'std', 'sum', 'variance'] };