Skip to content

Instantly share code, notes, and snippets.

View kpq's full-sized avatar

Kevin Quealy kpq

View GitHub Profile
@kpq
kpq / nba-draft-scrape
Created June 24, 2013 00:13
Scrape every player ever in the NBA draft in R
library(XML)
years <- 1950:2012
data <- NULL
for (i in years) {
print(i)
url <- paste("http://www.basketball-reference.com/draft/NBA_", i, ".html", sep="")
page <- htmlTreeParse(readLines(url), useInternalNodes=T)
table <- readHTMLTable(page)$stats
@kpq
kpq / gist:4752291
Created February 11, 2013 03:31
KQ Test
<h1>Test tktktk</h1>