diff options
author | Braxton Fair <braxton@hexel.xyz> | 2016-02-28 20:33:57 -0600 |
---|---|---|
committer | Braxton Fair <braxton@hexel.xyz> | 2016-02-28 20:33:57 -0600 |
commit | ecba01b4b1c35cbcf58c5e030b9e79a5c30be55c (patch) | |
tree | 66587447ce096e13093d16a82cf6aa8c9b55d8ee /pythonstatcomp.html.markdown | |
parent | 326fa410fae93dc0f4767444759042515d7c28d5 (diff) |
Write a bit better code
Diffstat (limited to 'pythonstatcomp.html.markdown')
-rw-r--r-- | pythonstatcomp.html.markdown | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pythonstatcomp.html.markdown b/pythonstatcomp.html.markdown index f8d83b98..0b02dca8 100644 --- a/pythonstatcomp.html.markdown +++ b/pythonstatcomp.html.markdown @@ -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) |