Learn R Programming

SDG Detector

In 2015, leaders worldwide adopted 17 Sustainable Development Goals (SDGs) with 169 targets to be achieved by 2030 (https://sdgs.un.org). The framework of SDGs serves as a blueprint for shared prosperity for both people and the earth. SDGdetector identifies both direct and indirect expressions of SDGs and associated targets in chunks of text. It takes a data frame with a specified column of text to process as inputs, and outputs a data frame with original columns plus matched SDGs and targets.

Installation

There are two ways to install the SDGdetector R package.

1. CRAN

SDGdetector is now available on CRAN, so you can install it with:

install.packages("SDGdetector")

2. GitHub

You can alternatively install the development version of SDGdetector from GitHub as follows:

if (!require("remotes")) {
  install.packages("remotes")
}

remotes::install_github("Yingjie4Science/SDGdetector")

Example Usage

To detect SDGs from text

library(SDGdetector)

### string as input data
text <- 'our goal is to mitigate climate change, end poverty, and reduce inequality globally'
SDGdetector(x = text)

### dataframe as input data
df <- data.frame(col = c(
  'our goal is to end poverty globally', 
  'this product contributes to slowing down climate change'))
SDGdetector(x = df, col = col)

To detect regions/countries in text

x = 'China and USA devoted the largest efforts on solar energy'
detect_region(x)

To use specific SDG colors

sdg_color(1)
sdg_color(x = 1:17)

To use specific SDG icons

sdg_icon(x = 7, res = 300)

To visualize SDG on a bar plot

data("sdgstat")
df <- sdgstat

# plot SDG on a bar plot
plot_sdg_bar(data = df, sdg = SDG, value = Value)

To visualize SDG on a map

# plot SDG by country on a map
plot_sdg_map(data = df, sdg = SDG, value = Value, country = Country, by_sdg = F)

Accuracy Evaluation

This package has achieved high accuracy in detecting SDG-related statements within textual data (> 75%, measured by the alignment between the R package results and four experts' manually-coded results; see this supplementary document for more information. The data and code for reproducing the performance metrics can be found in this repo under ./docs/accuracy_evaluation/.

License

The SDGdetector R package is distributed under the GNU General Public License v3.0.

How to Cite

Get citation information for SDGdetector in R doing citation(package = 'SDGdetector')

To cite SDGdetector in publications, please use:

  Li, Y., Frans, V.F., Song, Y., Cai, M., Zhang, Y., Liu, J. (2023). SDGdetector: an R-based text mining tool for quantifying efforts toward Sustainable Development Goals. Journal of Open Source Software 8(84), 5124. https://doi.org/10.21105/joss.05124.

A BibTeX entry for LaTeX users is

  @Article{,
    title = {SDGdetector: an R-based text mining tool for quantifying efforts toward Sustainable Development Goals},
    author = {Yingjie Li and Veronica F. Frans and Yongze Song and Meng Cai and Yuqian Zhang and Jianguo Liu},
    journal = {Journal of Open Source Software},
    year = {2023},
    volume = {8},
    number = {84},
    pages = {5124},
    doi = {10.21105/joss.05124},
    url = {https://github.com/Yingjie4Science/SDGdetector}
  }

Reporting Bugs

SDGdetector is distributed as is and without warranty of suitability for application. If you encounter flaws with the software (i.e. bugs) please report the issue. Providing a detailed description of the conditions under which the bug occurred will help to identify the bug. Use the Issues tracker on GitHub to report issues with the software and to request feature enhancements.

Copy Link

Version

Install

install.packages('SDGdetector')

Monthly Downloads

194

Version

2.7.3

License

GPL (>= 3)

Issues

Pull Requests

Stars

Forks

Maintainer

Yingjie Li

Last Published

May 23rd, 2023

Functions in SDGdetector (2.7.3)

func_OR_vector

Use OR to Concatenate a Vector of Terms
add_sdg_pattern

Users Can Add Customized Patterns for Each SDG or Target
list_of_un_goals_targets

The Names, ID, and Descriptions of all the 17 SDGs and 169 Targets
codelist_panel

List of Names and ISO Code for Countries
SDG_keys

SDG_keys
SDGdetector

Identify SDGs in text
detect_region

Detect country or region names in text for further mapping
country_region_names

Datasets of country and region names.
summarize_sdg

Summarize results from SDGdetector at either the Goal level or Target level.
shp

Datasets of shapefiles.
lookaround_nearby_n

Look Around
sdg_icons

List SDG Icons
sdgstat

Datasets of SDG statistics.
plot_sdg_bar

SDG bar plot
plot_sdg_map

SDG Map Plot
sdg_color

Color scheme for the 17 SDGs
sdg_icon

Icons for SDGs
func_AND_vector

Last update on: 3/31/2022