Skip to content

Instantly share code, notes, and snippets.

@GarrettMooney
Last active March 8, 2018 01:41
Show Gist options
  • Save GarrettMooney/9ce4c750657de8f4ed612710b135f934 to your computer and use it in GitHub Desktop.
Save GarrettMooney/9ce4c750657de8f4ed612710b135f934 to your computer and use it in GitHub Desktop.
Get code from blog
library(rvest)
library(purrr)
library(stringr)
url <- "http://ellisp.github.io/blog/2016/11/06/forecastxgb"
robotstxt::get_robotstxt(url)
url %>%
read_html() %>% html_nodes("span") %>% html_text() %>%
reduce(., str_c) %>%
cat(., file = "forecastxgb.R")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment