You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The application calculates the percent change between a comparison model run and the other model runs by differencing the raw values then dividing. Then, if a user enables the chart stacking, it sums up the percents. For all non-percent values, summing the model run differences is fine, but for percents it produces a meaningless result.
We need to either swap the order so that we sum the differences and then divide by the total rather than getting the percents and summing them, or we need to disable stacking when we are in percent change mode (which has edge cases to detect similar to enabling the baseline run).
The text was updated successfully, but these errors were encountered:
The application calculates the percent change between a comparison model run and the other model runs by differencing the raw values then dividing. Then, if a user enables the chart stacking, it sums up the percents. For all non-percent values, summing the model run differences is fine, but for percents it produces a meaningless result.
We need to either swap the order so that we sum the differences and then divide by the total rather than getting the percents and summing them, or we need to disable stacking when we are in percent change mode (which has edge cases to detect similar to enabling the baseline run).
The text was updated successfully, but these errors were encountered: