Plot a donut chart of Scope 1 and Scope 2 emissions

plot_sme_emissions(scope1_emissions, scope2_emissions, company_name = NULL)

Arguments

scope1_emissions

Value for Scope 1 emissions (numeric).

scope2_emissions

Value for Scope 2 emissions (numeric).

company_name

Optional company name to include in the chart title (character string).

Value

A ggplot2 donut chart.

Examples

scope_1 = sme_scope1(85, 12000000)
scope_2 = sme_scope2(85, 12000000)
plot_sme_emissions(
scope1_emissions = scope_1$predicted_emissions,
scope2_emissions = scope_2$predicted_emissions,
company_name = "ABC")