Closed Leobouloc closed 9 years ago
When calling fetch_data, file ahs.csv was written in root folder and then returned an error. I think this is due to an additional whitespace at the end of line (same thing for acs.csv). Here is code that seems to work for me :
fetch_data
ahs.csv
acs.csv
fetch_data: wget http://enigma-public.s3.amazonaws.com/projects/smoke-alarm-risk/data/acs-bg-at-risk-population.csv \ -O data/acs-bg-at-risk-population.csv wget http://enigma-public.s3.amazonaws.com/projects/smoke-alarm-risk/data/acs-bg-population.csv \ -O data/acs-bg-population.csv wget http://enigma-public.s3.amazonaws.com/projects/smoke-alarm-risk/data/ahs.csv \ -O data/ahs.csv wget http://enigma-public.s3.amazonaws.com/projects/smoke-alarm-risk/data/acs.csv \ -O data/acs.csv
I know it looks exactly the same but it seems to be working whereas the previous one was not...
Thanks!
When calling
fetch_data
, fileahs.csv
was written in root folder and then returned an error. I think this is due to an additional whitespace at the end of line (same thing foracs.csv
). Here is code that seems to work for me :I know it looks exactly the same but it seems to be working whereas the previous one was not...