Warning: package 'ggridges' was built under R version 4.2.2
Show the code
library(readxl)
Warning: package 'readxl' was built under R version 4.2.2
Show the code
library(stringr)library(hrbrthemes)
Warning: package 'hrbrthemes' was built under R version 4.2.2
NOTE: Either Arial Narrow or Roboto Condensed fonts are required to use these themes.
Please use hrbrthemes::import_roboto_condensed() to install Roboto Condensed and
if Arial Narrow is not on your system, please see https://bit.ly/arialnarrow
DRC Tantalum Curiously Drops from 2016 through 2019 while Rwanda’s Production Marginally Increases
Show the code
mineral_df |>filter(Country =='Rwanda'| Country =='Congo, D.R.', Sheet =='Tantalum (Ta2O5)') |>ggplot(aes(x=Year, y=Units, group = Country, color = Country)) +geom_point() +geom_line() +facet_wrap(~ Sheet)
Diamonds are still the primary production of DRC
Show the code
mineral_df |>filter(Country =='Congo, D.R.') |>ggplot(aes(Year, Sheet, fill = (Units/1000000))) +geom_tile()
Why is this interesting?
The DRC underwent a recent regional conflict with rebel groups in North Kivu province in 2017. Rwanda has been repeatedly accused of looting minerals from DRC throgh its associations with these rebel groups. DRC has also had a long history of blood diamond trade with diamonds as its main mineral production through 2020.