rstudio/webinars

path of data in 42- Introduction to sparklyr + typo

virgile-baudrot opened this issue · 1 comments

If I well understood, in the 42 - Introduction to sparklyr, the path of data sets 2003.csv.bz2 and 2004.csv.bz2 should be downloaded in the repository data created just before.
So, line 58, changing
download.file("http://stat-computing.org/dataexpo/2009/2003.csv.bz2", "2003.csv.bz2")
into
download.file("http://stat-computing.org/dataexpo/2009/2003.csv.bz2", "data/2003.csv.bz2").
And similarly line 62:
download.file("http://stat-computing.org/dataexpo/2009/2004.csv.bz2", "2004.csv.bz2")
into
download.file("http://stat-computing.org/dataexpo/2009/2004.csv.bz2", "data/2004.csv.bz2")

Also a typo l.155 in the text outside chunks (I do not create a new issue for such a small thing, should I?):

the is a new table called flights_subset

is maybe

there is a new table called flights_subset

Thanks for this great tutorial !

@edgararuiz Could you take a look?