Skip to contents

Dataset with Covid19 maximum weekly prevalence in California counties between 2020 and 2024, from healthdata.gov.

Usage

data(covid_prevalence)

Format

data frame with 3 columns and 51048 rows

Details

County coordinates for this dataset are in covid_coordinates.

Examples

#to time series list
tsl <- tsl_initialize(
  x = covid_prevalence,
  name_column = "name",
  time_column = "time"
)

#time series plot
if(interactive()){

 #subset to avoid margin errors
 tsl_plot(
  tsl = tsl_subset(
    tsl = tsl,
    names = 1:4
    ),
  guide = FALSE
  )

}