mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-22 05:20:23 +01:00
disabling examples
This commit is contained in:
parent
28beea676c
commit
ff22ba05d8
@ -8,31 +8,33 @@
|
|||||||
#'
|
#'
|
||||||
#' @param data metadata for the relevant instrument.
|
#' @param data metadata for the relevant instrument.
|
||||||
#' Could be from `ds2dd_detailed()`
|
#' Could be from `ds2dd_detailed()`
|
||||||
#' @param dir destination dir for the instrument zip. Default is the current WD.
|
#' @param file destination file name.
|
||||||
|
#' @param force force instrument creation and ignore different form names by
|
||||||
|
#' just using the first.
|
||||||
#' @param record.id record id variable name. Default is 'record_id'.
|
#' @param record.id record id variable name. Default is 'record_id'.
|
||||||
#'
|
#'
|
||||||
#' @return exports zip-file
|
#' @return exports zip-file
|
||||||
#'
|
#'
|
||||||
#' @examples
|
#' @examples
|
||||||
#' iris |>
|
#' #iris |>
|
||||||
#' ds2dd_detailed(
|
#' # ds2dd_detailed(
|
||||||
#' add.auto.id = TRUE,
|
#' # add.auto.id = TRUE,
|
||||||
#' form.name = sample(c("b", "c"), size = 6, replace = TRUE, prob = rep(.5, 2))
|
#' # form.name = sample(c("b", "c"), size = 6, replace = TRUE, prob = rep(.5, 2))
|
||||||
#' ) |>
|
#' # ) |>
|
||||||
#' purrr::pluck("meta") |>
|
#' # purrr::pluck("meta") |>
|
||||||
#' (\(.x){
|
#' # (\(.x){
|
||||||
#' split(.x, .x$form_name)
|
#' # split(.x, .x$form_name)
|
||||||
#' })() |>
|
#' # })() |>
|
||||||
#' purrr::imap(function(.x, .i){
|
#' # purrr::imap(function(.x, .i){
|
||||||
#' export_redcap_instrument(.x,file=here::here(paste0(.i,Sys.Date(),".zip")))
|
#' # export_redcap_instrument(.x,file=here::here(paste0(.i,Sys.Date(),".zip")))
|
||||||
#' })
|
#' # })
|
||||||
#'
|
#'
|
||||||
#' iris |>
|
#' #iris |>
|
||||||
#' ds2dd_detailed(
|
#' # ds2dd_detailed(
|
||||||
#' add.auto.id = TRUE
|
#' # add.auto.id = TRUE
|
||||||
#' ) |>
|
#' # ) |>
|
||||||
#' purrr::pluck("meta") |>
|
#' # purrr::pluck("meta") |>
|
||||||
#' export_redcap_instrument(file=here::here(paste0("instrument",Sys.Date(),".zip")))
|
#' # export_redcap_instrument(file=here::here(paste0("instrument",Sys.Date(),".zip")))
|
||||||
export_redcap_instrument <- function(data,
|
export_redcap_instrument <- function(data,
|
||||||
file,
|
file,
|
||||||
force=FALSE,
|
force=FALSE,
|
||||||
|
@ -5,6 +5,6 @@ account: agdamsbo
|
|||||||
server: shinyapps.io
|
server: shinyapps.io
|
||||||
hostUrl: https://api.shinyapps.io/v1
|
hostUrl: https://api.shinyapps.io/v1
|
||||||
appId: 11351429
|
appId: 11351429
|
||||||
bundleId: 9263605
|
bundleId: 9264087
|
||||||
url: https://agdamsbo.shinyapps.io/redcapcast/
|
url: https://agdamsbo.shinyapps.io/redcapcast/
|
||||||
version: 1
|
version: 1
|
||||||
|
@ -10,9 +10,12 @@ export_redcap_instrument(data, file, force = FALSE, record.id = "record_id")
|
|||||||
\item{data}{metadata for the relevant instrument.
|
\item{data}{metadata for the relevant instrument.
|
||||||
Could be from `ds2dd_detailed()`}
|
Could be from `ds2dd_detailed()`}
|
||||||
|
|
||||||
\item{record.id}{record id variable name. Default is 'record_id'.}
|
\item{file}{destination file name.}
|
||||||
|
|
||||||
\item{dir}{destination dir for the instrument zip. Default is the current WD.}
|
\item{force}{force instrument creation and ignore different form names by
|
||||||
|
just using the first.}
|
||||||
|
|
||||||
|
\item{record.id}{record id variable name. Default is 'record_id'.}
|
||||||
}
|
}
|
||||||
\value{
|
\value{
|
||||||
exports zip-file
|
exports zip-file
|
||||||
@ -24,23 +27,23 @@ function can be used to create (an) instrument(s) to add to a project in
|
|||||||
production.
|
production.
|
||||||
}
|
}
|
||||||
\examples{
|
\examples{
|
||||||
iris |>
|
#iris |>
|
||||||
ds2dd_detailed(
|
# ds2dd_detailed(
|
||||||
add.auto.id = TRUE,
|
# add.auto.id = TRUE,
|
||||||
form.name = sample(c("b", "c"), size = 6, replace = TRUE, prob = rep(.5, 2))
|
# form.name = sample(c("b", "c"), size = 6, replace = TRUE, prob = rep(.5, 2))
|
||||||
) |>
|
# ) |>
|
||||||
purrr::pluck("meta") |>
|
# purrr::pluck("meta") |>
|
||||||
(\(.x){
|
# (\(.x){
|
||||||
split(.x, .x$form_name)
|
# split(.x, .x$form_name)
|
||||||
})() |>
|
# })() |>
|
||||||
purrr::imap(function(.x, .i){
|
# purrr::imap(function(.x, .i){
|
||||||
export_redcap_instrument(.x,file=here::here(paste0(.i,Sys.Date(),".zip")))
|
# export_redcap_instrument(.x,file=here::here(paste0(.i,Sys.Date(),".zip")))
|
||||||
})
|
# })
|
||||||
|
|
||||||
iris |>
|
#iris |>
|
||||||
ds2dd_detailed(
|
# ds2dd_detailed(
|
||||||
add.auto.id = TRUE
|
# add.auto.id = TRUE
|
||||||
) |>
|
# ) |>
|
||||||
purrr::pluck("meta") |>
|
# purrr::pluck("meta") |>
|
||||||
export_redcap_instrument(file=here::here(paste0("instrument",Sys.Date(),".zip")))
|
# export_redcap_instrument(file=here::here(paste0("instrument",Sys.Date(),".zip")))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user