load_values
Load a small time series from inline numeric values, with optional timestamps or a regular frequency.
Instructions
Register a series from inline values (small data; prefer load_csv for files).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| freq | No | If no timestamps: pandas frequency (default '1min'). | |
| name | No | Human-readable label for the series. | inline |
| start | No | If no timestamps: start time for a regular grid. | |
| values | Yes | The observations, in time order. | |
| timestamps | No | ISO-8601 timestamps matching `values`. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | Yes | ISO-8601 timestamp of the last observation. | |
| name | Yes | ||
| start | Yes | ISO-8601 timestamp of the first observation. | |
| stats | Yes | Five-number-style summary of the values in a series. | |
| source | Yes | Where the series came from: csv path, inline, sample, or a derivation. | |
| n_points | Yes | ||
| series_id | Yes | ||
| inferred_freq | Yes | Pandas frequency string inferred from the index, e.g. '5min'; null if irregular. |