diff --git a/R/mtcars_redcap.R b/R/mtcars_redcap.R new file mode 100644 index 0000000..4079bca --- /dev/null +++ b/R/mtcars_redcap.R @@ -0,0 +1,23 @@ +#' mtcars dataset slightly modified to use for Shiny app upload demonstration +#' +#' +#' @format A data frame with 13 variables: +#' \describe{ +#' \item{record_id}{ID, numeric} +#' \item{mpg}{ID, numeric} +#' \item{cyl}{ID, numeric} +#' \item{disp}{ID, numeric} +#' \item{hp}{ID, numeric} +#' \item{drat}{ID, numeric} +#' \item{wt}{ID, numeric} +#' \item{qsec}{ID, numeric} +#' \item{vs}{ID, numeric} +#' \item{am}{ID, numeric} +#' \item{gear}{ID, numeric} +#' \item{carb}{ID, numeric} +#' \item{name}{original rownames, charater} +#' +#' } +#' @usage data(mtcars_redcap) +"mtcars_redcap" + diff --git a/data/mtcars_redcap.rda b/data/mtcars_redcap.rda new file mode 100644 index 0000000..8495911 Binary files /dev/null and b/data/mtcars_redcap.rda differ diff --git a/man/deploy_shiny.Rd b/man/deploy_shiny.Rd new file mode 100644 index 0000000..5104cc3 --- /dev/null +++ b/man/deploy_shiny.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/shiny_cast.R +\name{deploy_shiny} +\alias{deploy_shiny} +\title{Deploy the Shiny app with rsconnect} +\usage{ +deploy_shiny(path = here::here("app/"), name.app = "shiny_cast") +} +\arguments{ +\item{path}{app folder path} + +\item{name.app}{name of deployed app} +} +\value{ +deploy +} +\description{ +Deploy the Shiny app with rsconnect +} +\examples{ +# deploy_shiny + +} diff --git a/man/mtcars_redcap.Rd b/man/mtcars_redcap.Rd new file mode 100644 index 0000000..8bbab01 --- /dev/null +++ b/man/mtcars_redcap.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/mtcars_redcap.R +\docType{data} +\name{mtcars_redcap} +\alias{mtcars_redcap} +\title{mtcars dataset slightly modified to use for Shiny app upload demonstration} +\format{ +A data frame with 13 variables: +\describe{ + \item{record_id}{ID, numeric} + \item{mpg}{ID, numeric} + \item{cyl}{ID, numeric} + \item{disp}{ID, numeric} + \item{hp}{ID, numeric} + \item{drat}{ID, numeric} + \item{wt}{ID, numeric} + \item{qsec}{ID, numeric} + \item{vs}{ID, numeric} + \item{am}{ID, numeric} + \item{gear}{ID, numeric} + \item{carb}{ID, numeric} + \item{name}{original rownames, charater} + +} +} +\usage{ +data(mtcars_redcap) +} +\description{ +mtcars dataset slightly modified to use for Shiny app upload demonstration +} +\keyword{datasets}