R read csv from URL #R
library(RCurl) library(bitops) URL = "https://d396qusza40orc.cloudfront.net/getdata%2Fdata%2Fss06hid.csv" x = getURL(URL) out = read.csv(textConnection(x)) head(out[1:6])