COMPUTE AVERAGE MAX VALUE BETWEEN TWO X VALUES FOR THE CURVES¶
Computes a summary statistic (max, min, or average) of the per-curve average y-values over a specified x-range for a collection of curves. Use this worker to reduce multiple curves to a single scalar dataset representing their windowed average behavior.
When to use¶
Classification: process.
Tagged: average, curve_reduction, scalar_extraction, windowed_average, x_range.
Inputs¶
| Label | ID | Type | Default | Required | Description |
|---|---|---|---|---|---|
| Curves | curves | vector | — | ✓ | One or more input curves (y vs. x) over which the windowed average will be computed; accepts multiple curve objects in d3VIEW curve format. |
| X Min | x_min | float | 0.0 | Lower bound of the x-window used for averaging (same units as the curve x-axis); x-values below this threshold are excluded — defaults to 0.0. | |
| X Max | x_max | float | 1.0 | Upper bound of the x-window used for averaging (same units as the curve x-axis); x-values above this threshold are excluded — defaults to 1.0. | |
| Return type | return_type | scalar | max | Aggregation applied across all per-curve averages: ‘max’ returns the highest average, ‘min’ the lowest, and ‘avg’ the mean of all averages — defaults to ‘max’. |
Outputs¶
| Label | ID | Type | Description |
|---|---|---|---|
| curves_average_value_between_output_1 | curves_average_value_between_output_1 | dataset | Dataset containing the single aggregated scalar result (max, min, or average of the per-curve windowed averages) computed over the specified x-range. |
Disciplines¶
- data.curve.pair
- data.statistics
Runnable example¶
A runnable example is registered for this worker. Open the example workflow on the d3VIEW canvas: /api/workflow/example?id=curves_average_value_between
Auto-generated from transformation schema. Worker id: curves_average_value_between. Schema hash: d5b0447a39bc. Hand-curated docs in workerexamples/ override this page when present.