The goal of FARSPackage is to display information on the US National Highway Traffic Safety Administration’s Fatality Analysis Reporting System (FARS) for the years 2013, 2014 and 2015.
You can install the released version of FARSPackage from CRAN with:
install.packages("FARSPackage")
And the development version from GitHub with:
# install.packages("devtools")
devtools::install_github("PatGruetter/FARSPackage")
Example 1)
library(FARSPackage)
fars_summarize_years(2014:2015)
#> # A tibble: 12 x 3
#> MONTH `2014` `2015`
#> <dbl> <int> <int>
#> 1 1 2168 2368
#> 2 2 1893 1968
#> 3 3 2245 2385
#> 4 4 2308 2430
#> 5 5 2596 2847
#> 6 6 2583 2765
#> 7 7 2696 2998
#> 8 8 2800 3016
#> 9 9 2618 2865
#> 10 10 2831 3019
#> 11 11 2714 2724
#> 12 12 2604 2781
Example 2)
fars_map_state(5,2015)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.