The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
______ __ ____ ___ __
/ ____/___ ______/ /_ ____ ____ / __ \________ ____/ (_)____/ /_
/ / / __ `/ ___/ __ \/ __ \/ __ \ / /_/ / ___/ _ \/ __ / / ___/ __/
/ /___/ /_/ / / / /_/ / /_/ / / / / / ____/ / / __/ /_/ / / /__/ /_
\____/\__,_/_/ /_.___/\____/_/ /_/ /_/ /_/ \___/\__,_/_/\___/\__/
~ Hamza Suleman
Carbon Predict is an R package for predicting Scope 1, 2 and 3 carbon emissions for UK Small and Medium-sized Enterprises (SMEs), using Standard Industrial Classification (SIC) codes and annual turnover data. It provides single and batch prediction, plotting, and workflow tools for carbon accounting and reporting. The package utilises pre-trained models, leveraging rich classified transaction data to accurately predict Scope 1, 2 and 3 carbon emissions for UK SMEs as well as identifying emissions hotspots.
The methodology used to produce the estimates in this package is fully detailed in the following peer-reviewed publication:
Phillpotts, A., Owen. A., Norman, J., Trendl, A., Gathergood, J., Jobst, Norbert., Leake, D., 2025. Bridging the SME Reporting Gap: A New Model for Predicting Scope 1 and 2 Emissions. Journal of Industrial Ecology. http://doi.org/10.1111/jiec.70106.
You can install the package from CRAN (coming soon!):
install.packages("carbonpredict")
Or install the development version from GitHub:
# Clone the repository
# git clone https://github.com/david-leake/carbonpredict.git
# Then install locally
install.packages("devtools")
::install_local("carbonpredict") devtools
Then load it in as normal:
library(carbonpredict)
sme_scope1(85, 12000000)
sme_scope2(85, 12000000)
# Note: all predicted emissions values are in tonnes of Co2e (tCo2e).
sme_scope3(85, 12000000)
sme_scope3_hotspots(85)
<- sme_scope1(85, 12000000)
scp1 <- sme_scope2(85, 12000000)
scp2 <- sme_scope3(85, 12000000)
scp3
# Pie chart showing total emissions for each scope
plot_sme_emissions(
$`Predicted Emissions (tCO2e)`,
scp1$`Predicted Emissions (tCO2e)`,
scp2$Category == "Total", "Predicted Emissions (tCO2e)"][[1]],
scp3[scp3"Carbon Predict LTD")
# Sankey diagram showing scope 3 emissions broken down for each category
plot_scope3_emissions(scp3, "Carbon Predict LTD")
sme_emissions_profile(85, 12000000, "Carbon Predict LTD")
# Some sample SME data is included in the package for demonstration purposes.
<- system.file("extdata", "sme_examples.csv", package = "carbonpredict")
sample_data <- batch_predict_emissions(data = sample_data, company_type = "sme", output_path = "temp/results.csv") results
<- system.file("extdata", "sme_examples.csv", package = "carbonpredict")
sample_data batch_sme_plots(data = sample_data, output_path = "temp/plots")
Full documentation is available on our GitHub
Pages site, in the package
manual (PDF), and via R help pages (e.g.,
?sme_scope1
).
Pull requests and issues are welcome!
MIT
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.