Skip to content

Instantly share code, notes, and snippets.

@shilohfling
shilohfling / web_scrape_r1_uni.R
Created October 14, 2019 19:58
An RScript for scraping the R1 Universities and the year they were established from Wikipedia. Some uni's are incorrect or NA because of the regex, but you get the gist.
##################################################
# An RScript for scraping the R1 Universities #
# and their established dates from Wikipedia. #
##################################################
# Created: October 14, 2019 #
##################################################
## Load packages -----
library(tidyverse)
library(here)
@shilohfling
shilohfling / web_scrape_datacamp_courses.R
Created June 25, 2019 16:29
An RScript for webscraping the names and associated programming language of each Python, R, and SQL course available on DataCamp.
##################################################
# An RScript for webscraping the names and #
# associated programming language of each #
# Python, R, and SQL course #
# available on DataCamp. #
##################################################
# Last updated: March 21, 2019 #
##################################################
## Load packages -----