R/daily_indicator.R
daily_indicator.Rd
This function aims to simplify the code in c19euxplorer
shiny app by selecting
country, date, and the indicator in daily data to be visualized in Cases and Deaths Tab.
This function would be used in the app.R file.
daily_indicator( df, indicator = c("Cases", "Cases per 10,000 people", "Deaths", "Deaths per 10,000 people") )
df | A daily COVID-19 tibble. |
---|---|
indicator | A shiny's input_id of indicator to be visualized |
A data frame containing the country, date, and the indicator.
You can also use this function outside the app. However, make sure to have these variables (with the exact same name) in your data frame in order to make the function works.
daily_cases
daily_deaths
daily_cases_rate
daily_deaths_rate
country
date
if (FALSE) { daily_indicator(covid_eu_daily, input$indicator_select) }