# Aggregated Impact

## Metric Insights and Aggregated Impact

Statsig's Insights page shows how experiments and feature gates affect a single metric. It answers questions such as "How much impact have I driven?" and diagnoses unexpected changes in a metric.

Insights presents a reverse perspective of the [Pulse](https://docs.statsig.com/experiments/interpreting-results/read-results) view. Pulse measures the impact of a new feature on all your metrics; Insights focuses on a single metric and identifies which tests are affecting that metric the most. This single-metric focus makes Insights useful for assessing your team's impact and setting realistic goals.

## How to read Insights

1. Navigate to the Insights section in the Statsig console: https://console.statsig.com/. Insights also appears in the insight tab for each metric.
2. Select a metric from the drop-down at the top of the page.
3. Select the ID type, time window, and other filters.
4. Based on the filters you choose, you can see the relative impact, topline impact, and projected launch impact for any experiment or gate that uses this metric.
5. Statsig also sums the projected launch impacts, adjusts based on false positive risk ('winner's curse'), and displays the result as the 'Aggregated Impact Estimate'.

{% figure %}
![Insights dashboard showing aggregated impact estimates for a metric](https://docs.statsig.com/images/snippets/pulse/aggregated-impact/430563dc-4794-4d69-a314-36c76a6fcf74.png)
{% /figure %}

## How the math works

Refer to the [topline impact documentation](https://docs.statsig.com/experiments/statistical-methods/topline-impact/#computing-projected-launch-impact) for details on how Statsig calculates topline and projected launch impact.

To estimate false positive risk and calculate Aggregated Impact, Statsig uses the methodology in this [paper](https://dl.acm.org/doi/10.1145/3534678.3539160), which the industry widely adopts. Specifically:

$$
Aggregated Impact=\sum\_\{i}\{(1 - FPR\_i) \times Projected Launch Impact\_i}
$$

Where the [projected launch impact](https://docs.statsig.com/experiments/statistical-methods/topline-impact/) is an estimate of the topline impact assuming you make a decision and launch the test group to all users. Statsig calculates the false positive risk using the following formula:

$$
FPR\_i = \frac\{\alpha\_i \times \pi}\{\alpha\_i \times \pi + (1 - \beta\_i) \times (1 - \pi)}
$$

In this formula, $\alpha\_i$ is the significance level for experiment i, $\beta\_i$ is the type II error, and 1 - $\pi$ is the prior success rate based on historical experiment results.
