Skip to contents

A dataset containing cases and death counts for each date since the pandemic started in michigan, as well as moving averages for both cases and deaths

Usage

mi_covid

Format

A data frame with 741 rows and 5 variables:

Date

Identifying date, as dttm

Cases

Number of confirmed COVID cases in Michigan for that Date

Deaths

Number of confirmed COVID deaths in Michigan for that Date

Cases_MA

7-day moving average of Cases

Deaths_MA

7-day moving average of Deaths

Examples

plot(mi_covid$Date, mi_covid$Cases)

mean_deaths_per_day <- mean(mi_covid$Deaths)