Last active
September 11, 2015 13:28
-
-
Save stepankuzmin/17a780cecefd310512be to your computer and use it in GitHub Desktop.
Перечень названий стран и их коды по ГОСТ 7.67-2003
This file contains hidden or 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(XML) | |
| library(httr) | |
| GOST_7_67_2003 <- (function() { | |
| url <- "https://ru.wikipedia.org/wiki/%D0%93%D0%9E%D0%A1%D0%A2_7.67" | |
| content <- content(GET(url), as="text") | |
| html <- htmlParse(content, asText=TRUE) | |
| tables <- readHTMLTable(html) | |
| table <- tables[[1]] | |
| table[complete.cases(table),] | |
| })() |
Author
stepankuzmin
commented
Sep 11, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment