Test/RiskGraph Fixed
Appearance
< Test
RiskGraph with Fixed Parameters Test
This page tests RiskGraph with fixed parameters using data-* attributes.
Risk Model
RiskModel: Test/RiskGraph Fixed:ParameterizedRisk
Sorted Parameters:
base_value = {{#expr: {amount} * {multiplier} }}
adjusted = {{#expr: {base_value} + {offset} }}
result = {{#expr: {adjusted} * {factor} }}
Content:
Result: {result}
Graph 1: Fixed multiplier=2, offset=5, factor=1.5
Loading graph...
Graph 2: Different fixed parameters (multiplier=3, offset=0, factor=1)
Loading graph...
What to Expect
2 graphs using the same model but different fixed parameters:
Graph 1: result = ((amount * 2) + 5) * 1.5
- At amount=0: result = 7.5
- At amount=50: result = 157.5
Graph 2: result = ((amount * 3) + 0) * 1
- At amount=0: result = 0
- At amount=50: result = 150
The graphs should show different slopes and intercepts even though they use the same RiskModel.