Skip to content

Instantly share code, notes, and snippets.

@giocomai
Created May 28, 2017 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giocomai/41e0286e61f8a7ecc9729865ac902b6f to your computer and use it in GitHub Desktop.
Save giocomai/41e0286e61f8a7ecc9729865ac902b6f to your computer and use it in GitHub Desktop.
Extract the name of all UN member states from the official website of the United Nations in R #rstats
library("rvest")
read_html(x = "http://www.un.org/en/member-states/") %>%
html_nodes(xpath = "//span[@class='member-state-name']") %>%
html_text()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment