median
Calculate the median of a list of numbers for accurate statistical analysis. Input an array of numerical values to derive the central value in the dataset.
Instructions
Calculates the median of a list of numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
numbers | Yes | Array of numbers to find the median of |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"numbers": {
"description": "Array of numbers to find the median of",
"items": {
"type": "number"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"numbers"
],
"type": "object"
}