plot_timeseries.Rd
Create a plot of the number of covid cases over time.
plot_timeseries(covid_df, metric, start = "", end = "")
a dataframe containing covid data to plot
the name of column from covid data to plot along time
a string indicating the start date in pattern YYYY-MM-DD
a string indicating the end date in pattern YYYY-MM-DD
plot object
df <- get_covid_data()
plot_timeseries(df,cases)