Skip to content

Commit

Permalink
moving more examples to new server
Browse files Browse the repository at this point in the history
  • Loading branch information
wibeasley committed Oct 13, 2024
1 parent 818ca98 commit c5be88d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions R/redcap-project.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#' password for a project. Required.
#'
#' @examples
#' uri <- "https://bbmc.ouhsc.edu/redcap/api/"
#' token <- "9A81268476645C4E5F03428B8AC3AA7B"
#' uri <- "https://redcap-dev-2.ouhsc.edu/redcap/api/"
#' token <- "9A068C425B1341D69E83064A2D273A70"
#' \dontrun{
#' project <- REDCapR::redcap_project$new(redcap_uri=uri, token=token)
#' ds_all <- project$read()
Expand Down
4 changes: 2 additions & 2 deletions R/redcap-read-eav-oneshot.R
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@
#'
#' @examples
#' \dontrun{
#' uri <- "https://bbmc.ouhsc.edu/redcap/api/"
#' token <- "9A81268476645C4E5F03428B8AC3AA7B"
#' uri <- "https://redcap-dev-2.ouhsc.edu/redcap/api/"
#' token <- "9A068C425B1341D69E83064A2D273A70"
#'
#' # Return all records and all variables.
#' ds <- REDCapR:::redcap_read_eav_oneshot(redcap_uri=uri, token=token)$data
Expand Down
4 changes: 2 additions & 2 deletions R/redcap-read-oneshot-eav.R
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@
#'
#' @examples
#' \dontrun{
#' uri <- "https://bbmc.ouhsc.edu/redcap/api/"
#' token <- "9A81268476645C4E5F03428B8AC3AA7B"
#' uri <- "https://redcap-dev-2.ouhsc.edu/redcap/api/"
#' token <- "9A068C425B1341D69E83064A2D273A70"
#'
#' # Return all records and all variables.
#' ds <- REDCapR:::redcap_read_oneshot_eav(redcap_uri=uri, token=token)$data
Expand Down
4 changes: 2 additions & 2 deletions R/redcap-read-oneshot.R
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@
#'
#' @examples
#' \dontrun{
#' uri <- "https://bbmc.ouhsc.edu/redcap/api/"
#' token <- "9A81268476645C4E5F03428B8AC3AA7B"
#' uri <- "https://redcap-dev-2.ouhsc.edu/redcap/api/"
#' token <- "9A068C425B1341D69E83064A2D273A70"
#'
#' # Return all records and all variables.
#' ds <- REDCapR::redcap_read_oneshot(redcap_uri=uri, token=token)$data
Expand Down
4 changes: 2 additions & 2 deletions R/redcap-read.R
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@
#'
#' @examples
#' \dontrun{
#' uri <- "https://bbmc.ouhsc.edu/redcap/api/"
#' token <- "9A81268476645C4E5F03428B8AC3AA7B"
#' uri <- "https://redcap-dev-2.ouhsc.edu/redcap/api/"
#' token <- "9A068C425B1341D69E83064A2D273A70"
#'
#' # Return the entire dataset
#' REDCapR::redcap_read(batch_size=2, redcap_uri=uri, token=token)$data
Expand Down
8 changes: 4 additions & 4 deletions R/redcap-report.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
#'
#' @examples
#' \dontrun{
#' uri <- "https://bbmc.ouhsc.edu/redcap/api/"
#' token <- "9A81268476645C4E5F03428B8AC3AA7B"
#' report_1_id <- 5980L
#' report_2_id <- 6431L
#' uri <- "https://redcap-dev-2.ouhsc.edu/redcap/api/"
#' token <- "9A068C425B1341D69E83064A2D273A70"
#' report_1_id <- 12L
#' report_2_id <- 13L
#'
#' # Return all records and all variables.
#' ds_1a <-
Expand Down

0 comments on commit c5be88d

Please sign in to comment.