Statistics Calculator
Computes descriptive statistics and shows formulas and substitutions.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
values | array | Yes | Values |
Outputs
| Name | Type | Description |
|---|---|---|
mean | integer | Mean |
median | integer | Median |
variance | any | Variance |
standard_deviation | any | Standard deviation |
work | array | Work |
Sample request
{
"values": [
10,
20,
30,
40
]
}