Skip to content

Commit

Permalink
Fix #3479
Browse files Browse the repository at this point in the history
Change `http` to `https`.
  • Loading branch information
divayprakash committed Feb 28, 2019
1 parent 296e6ae commit de134e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r.html.markdown
Expand Up @@ -664,7 +664,7 @@ require(plyr)
# "pets.csv" is a file on the internet
# (but it could just as easily be a file on your own computer)
require(RCurl)
pets <- read.csv(textConnection(getURL("http://learnxinyminutes.com/docs/pets.csv")))
pets <- read.csv(textConnection(getURL("https://learnxinyminutes.com/docs/pets.csv")))
pets
head(pets, 2) # first two rows
tail(pets, 1) # last row
Expand Down

0 comments on commit de134e9

Please sign in to comment.