R/covid19_dashboard-wrapper.R

Defines functions covid19Explorer

Documented in covid19Explorer

# covid19.analytics Dashboard -- main wrapper function
#
# M.Ponce/A.Sandhel


#######################################################################


covid19Explorer <- function(locn=NULL) {
#' covid19.analytics explorer dashboard
#'
#' @param  locn geographical location to use as default
#'
#' @export
#'

	c19Dashboard <- covid19dashboard(locn=locn)

	ui <- c19Dashboard[[1]]
	server <- c19Dashboard[[2]]

	capture.output(shinyApp(ui = ui, server = server))

}

Try the covid19.analytics package in your browser

Any scripts or data that you put into this service are public.

covid19.analytics documentation built on Oct. 16, 2023, 1:06 a.m.