Description Usage Arguments Value Examples
The function accepts a vector or list of years and returns a list of data frames with MONTH and year columns based on data in "accident_<year>.csv.bz2 files. The files need to be located in the working directory.
1  | fars_read_years(years)
 | 
years | 
 A vector or list of years in numeric or integer format.  | 
Returns a list of tibbles (data frames) with the same number of rows as the data in "accident_<year>.csv.bz2" files and two columns - MONTH and year. Returns NULL and a warning if the file does not exist.
1 2 3 4 5 6 7 8  | ## Not run: 
fars_read_years(2013:2015)
fars_read_years(list(2013, 2014))
# Results in a warning
fars_read_years(2016)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.