Created
August 29, 2024 07:15
-
-
Save dickoa/d8d3237d3c06a262f3f909377593e7f6 to your computer and use it in GitHub Desktop.
Intro R code to copy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) # copy this part only if you don't have it yet | |
pop <- tibble(year = rep(2023, 5), | |
coa = c("Sudan", "Burkina Faso", "DRC", "Syria", "Yemen"), | |
pop = c(47.5, 22.9, 103.2, 22.1, 33.7), | |
idp = c(9.1, 2.3, 6.3, 7.2, 4.5)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment