mode
Identifies the most frequently occurring number in a given list of numbers, enabling quick and accurate statistical analysis for data-driven tasks.
Instructions
Finds the most common number in a list of numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
numbers | Yes | Array of numbers to find the mode of |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"numbers": {
"description": "Array of numbers to find the mode of",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"numbers"
],
"type": "object"
}