1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 04:20:39 +02:00

Merge pull request #2926 from kaymmm/r-require-curl

[r/en] Fix read.csv per #2926
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë
2017-10-21 02:06:11 +03:00
committed by GitHub

View File

@@ -663,7 +663,8 @@ require(plyr)
# "pets.csv" is a file on the internet # "pets.csv" is a file on the internet
# (but it could just as easily be a file on your own computer) # (but it could just as easily be a file on your own computer)
pets <- read.csv("http://learnxinyminutes.com/docs/pets.csv") require(RCurl)
pets <- read.csv(textConnection(getURL("http://learnxinyminutes.com/docs/pets.csv")))
pets pets
head(pets, 2) # first two rows head(pets, 2) # first two rows
tail(pets, 1) # last row tail(pets, 1) # last row