Aggregates monitoring data to compute total baseline, project, leakage, and emission reductions suitable for project documentation.

estimate_emission_reductions_acm0006(monitoring_data)

Arguments

monitoring_data

Data frame or tibble containing monitoring observations with at least the columns required by aggregate_monitoring_periods().

Value

Tibble with total emissions accounting for the monitoring dataset.

Examples

data <- simulate_acm0006_dataset(4, seed = 99)
estimate_emission_reductions_acm0006(data)
#> # A tibble: 1 × 6
#>   total_heat_output_tj total_electricity_output_mwh total_baseline_emissions
#>                  <dbl>                        <dbl>                    <dbl>
#> 1                 33.2                        1563.                    3601.
#> # ℹ 3 more variables: total_project_emissions <dbl>,
#> #   total_leakage_emissions <dbl>, total_emission_reductions <dbl>