to_incremental
Convert cumulative triangle to incremental per-period values, isolating period-specific claims development from cumulative totals.
Instructions
Convert a cumulative triangle to incremental (per-period) values.
inc[i, 0] = cum[i, 0]
inc[i, j>0] = cum[i, j] - cum[i, j-1] (when both observed)
Unobserved cells stay unobserved.
Args: cumulative: Cumulative triangle, possibly with unobserved cells.
Returns dict with triangle (incremental, same shape) and the
standard disclaimer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cumulative | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||