Developping Data Product - Coursera Course Project

jbassard
09/03/2017

Shiny app to navigate in NOAA's Database

About this shiny app

Importance of the NOAA's Database

Injuries, fatalities and economical impacts arise each year from extreme weather events that are recorded in the NOAA's database.

if (!require("data.table")) {install.packages("data.table")}
library(data.table)
data <- read.csv('./DataProductProject/data/events.csv', header=TRUE, stringsAsFactors=FALSE)
print(paste("This NOAA's database is made of " , dim(data)[1], "number of records assigned to ", length(unique(data$EVTYPE)), "major event categories, which have been limited in numbers for readability of the data one the Shiny app"))
[1] "This NOAA's database is made of  902042 number of records assigned to  24 major event categories, which have been limited in numbers for readability of the data one the Shiny app"

What the app is doing