knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
The Rfars package reads and plots Fatality Analysis Reporting System (FARS) data
from the National Highway Traffic Safety
Administration.
FARS is a nationwide census, providing the American public yearly data, regarding fatal injuries suffered in motor vehicle traffic crashes.
This package is primarily built for educational purposes. The package enables one to explore fatal traffic accidents from 2013-2015 using data from the National Highway Traffic Safety Administration (NHTSA) Fatality Analysis Reporting System (FARS).
library(Rfars)
Data files included within the package are:
list.files(system.file("extdata", package = "farsdata"))
make_filenameThis function returns file name and path to the data files:
make_filename(2015)
fars_read_yearsAuxiliary function used by fars_summarize_years:
fars_read_years(2013)
fars_summarize_yearsThis function summarizes yearly accidents data by month:
plot(fars_summarize_years(2015)) fars_summarize_years(c(2015, 2014))
fars_map_stateThe function displays a state map plot including accidents location by year:
state_num <- 49 # Utah fars_map_state(state_num, 2014)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.