tomer-ben-david
1/19/2018 - 6:53 AM

R read csv from URL #R

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])