1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-23 14:55:08 +02:00

Merge pull request #2166 from BraxtonFair/patch-1

Write a bit better code
This commit is contained in:
ven
2016-02-29 09:41:00 +01:00

View File

@@ -150,9 +150,8 @@ ggplot(aes(x="age",y="weight"), data=pets) + geom_point() + labs(title="pets")
url = "https://raw.githubusercontent.com/e99n09/R-notes/master/data/hre.csv"
r = requests.get(url)
fp = "hre.csv"
f = open(fp, "wb")
f.write(r.text.encode("UTF-8"))
f.close()
with open(fp, "wb") as f:
f.write(r.text.encode("UTF-8"))
hre = pd.read_csv(fp)