4/19/2020

COVID-19 Impact by State on April 18th

In this project I use R Markdown and Plotly to create a bar chart of the COVID-19 outbreak using April 18th, 2020 data. Data was taken from the 2019 Novel Coronavirus COVID-19 (2019-nCoV) Data Repository by Johns Hopkins CSSE GitHub. I will only examine the death toll among states within the United States.

Project Prompt: Create a web page presentation using R Markdown that features a plot created with Plotly. Host your webpage on either GitHub Pages, RPubs, or NeoCities. Your webpage must contain the date that you created the document, and it must contain a plot created with Plotly.

Data Used

url <- "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_daily_reports/04-18-2020.csv"
file <- "04-18-2020.csv"

download.file(url = url, destfile = file, method = "curl")

mapdata <- read.csv(file)

Impact of COVID-19 By State as of April 18, 2020

plot