This function loads pre-trained emissions models to predict scope 3 carbon emissions for a given SIC code and turnover.

sme_scope3(sic_code, turnover)

Arguments

sic_code

A 2-digit UK SIC code (numeric).

turnover

Annual turnover value (numeric).

Value

A data frame with predicted emissions (in tCo2e) for each scope 3 category.

Examples

sme_scope3(sic_code = 85, turnover = 12000000)
#>    Category                                Description
#> 1         1               Purchased Goods and Services
#> 2         2                              Capital Goods
#> 3         3         Fuel and Energy-Related Activities
#> 4         4   Upstream Transportation and Distribution
#> 5         5              Waste Generated in Operations
#> 6         6                            Business Travel
#> 7         7                         Employee Commuting
#> 8         8                     Upstream Leased Assets
#> 9         9 Downstream Transportation and Distribution
#> 10       10                Processing of Sold Products
#> 11       11                       Use of Sold Products
#> 12       12     End-of-Life Treatment of Sold Products
#> 13       13                   Downstream Leased Assets
#> 14    Total                                           
#>    Predicted Emissions (tCO2e)
#> 1                       349.28
#> 2                       355.36
#> 3                        25.58
#> 4                       112.73
#> 5                        16.07
#> 6                        40.61
#> 7                       193.53
#> 8                        12.15
#> 9                       170.07
#> 10                       17.01
#> 11                     2539.55
#> 12                       25.53
#> 13                      219.97
#> 14                     4077.45