frequency_count
Groups numeric data from a column into histogram bins and returns frequency counts, bin endpoints, and cumulative totals.
Instructions
Histogram-style frequency counts for one column.
Args: bin_min: lowest bin start bin_max: highest bin end bin_size: bin width (increment)
Returns: JSON list of {center, end, count, cumulative}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data_book | Yes | ||
| data_sheet | Yes | ||
| col | Yes | ||
| bin_min | Yes | ||
| bin_max | Yes | ||
| bin_size | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |