2023-03-03 12:41:14 +01:00
|
|
|
Package: REDCapCAST
|
2024-11-18 08:17:55 +01:00
|
|
|
Title: REDCap Castellated Data Handling and Metadata Casting
|
|
|
|
Version: 24.11.2
|
2018-06-14 04:47:57 +02:00
|
|
|
Authors@R: c(
|
2024-01-09 10:22:49 +01:00
|
|
|
person("Andreas Gammelgaard", "Damsbo", email = "agdamsbo@clin.au.dk",
|
2024-11-19 13:10:01 +01:00
|
|
|
role = c("aut", "cre"),comment = c(ORCID = "0000-0002-7559-1154")),
|
|
|
|
person("Paul", "Egeler", email = "paulegeler@gmail.com", role = c("aut"),
|
|
|
|
comment = c(ORCID = "0000-0001-6948-9498")))
|
2024-11-19 13:09:10 +01:00
|
|
|
Description: Casting metadata for REDCap database creation and handling of
|
|
|
|
castellated data using repeated instruments and longitudinal projects in
|
|
|
|
'REDCap'. Keeps a focused data export approach, by allowing to only export
|
|
|
|
required data from the database. Also for casting new REDCap databases based
|
|
|
|
on datasets from other sources.
|
|
|
|
Originally forked from the R part of 'REDCapRITS' by Paul Egeler.
|
2023-12-20 09:23:51 +01:00
|
|
|
See <https://github.com/pegeler/REDCapRITS>.
|
2023-06-05 08:36:23 +02:00
|
|
|
'REDCap' (Research Electronic Data Capture) is a secure, web-based software
|
2020-03-29 05:39:59 +02:00
|
|
|
platform designed to support data capture for research studies, providing
|
|
|
|
1) an intuitive interface for validated data capture; 2) audit trails for
|
|
|
|
tracking data manipulation and export procedures; 3) automated export
|
|
|
|
procedures for seamless data downloads to common statistical packages; and
|
2024-02-27 12:58:38 +01:00
|
|
|
4) procedures for data integration and interoperability with external
|
|
|
|
sources (Harris et al (2009) <doi:10.1016/j.jbi.2008.08.010>;
|
2023-06-05 08:36:23 +02:00
|
|
|
Harris et al (2019) <doi:10.1016/j.jbi.2019.103208>).
|
2018-06-03 22:08:26 +02:00
|
|
|
Depends: R (>= 3.4.0)
|
2023-03-08 11:50:44 +01:00
|
|
|
Suggests:
|
2018-06-23 04:24:34 +02:00
|
|
|
httr,
|
2018-06-03 22:08:26 +02:00
|
|
|
jsonlite,
|
2018-06-26 05:48:55 +02:00
|
|
|
testthat,
|
2019-07-26 23:26:33 +02:00
|
|
|
Hmisc,
|
2023-04-13 10:57:04 +02:00
|
|
|
knitr,
|
|
|
|
rmarkdown,
|
|
|
|
gt,
|
2024-01-18 14:58:38 +01:00
|
|
|
ggplot2,
|
2024-01-29 12:43:47 +01:00
|
|
|
here,
|
2024-02-05 14:47:31 +01:00
|
|
|
styler,
|
|
|
|
devtools,
|
2024-02-26 09:34:05 +01:00
|
|
|
roxygen2,
|
2024-04-12 12:20:13 +02:00
|
|
|
spelling,
|
2024-04-12 14:37:41 +02:00
|
|
|
glue,
|
2024-05-02 13:31:21 +02:00
|
|
|
rhub,
|
2024-11-15 20:42:25 +01:00
|
|
|
bslib
|
2023-03-08 20:18:39 +01:00
|
|
|
License: GPL (>= 3)
|
2018-06-03 22:08:26 +02:00
|
|
|
Encoding: UTF-8
|
|
|
|
LazyData: true
|
2024-09-05 12:52:32 +02:00
|
|
|
RoxygenNote: 7.3.2
|
2023-06-30 10:54:09 +02:00
|
|
|
URL: https://github.com/agdamsbo/REDCapCAST, https://agdamsbo.github.io/REDCapCAST/
|
2023-04-14 09:46:55 +02:00
|
|
|
BugReports: https://github.com/agdamsbo/REDCapCAST/issues
|
2023-02-28 09:54:03 +01:00
|
|
|
Imports:
|
2023-03-07 15:38:28 +01:00
|
|
|
dplyr,
|
2023-02-28 13:59:45 +01:00
|
|
|
REDCapR,
|
2023-03-07 15:38:28 +01:00
|
|
|
tidyr,
|
2023-12-20 09:01:40 +01:00
|
|
|
tidyselect,
|
|
|
|
keyring,
|
2024-01-18 14:58:38 +01:00
|
|
|
purrr,
|
|
|
|
readr,
|
2024-02-27 14:09:19 +01:00
|
|
|
stats,
|
|
|
|
shiny,
|
2024-04-09 10:54:52 +02:00
|
|
|
haven,
|
2024-05-02 13:31:21 +02:00
|
|
|
zip,
|
2024-09-09 11:01:46 +02:00
|
|
|
assertthat,
|
|
|
|
openxlsx2,
|
2024-11-18 14:41:44 +01:00
|
|
|
readODS,
|
2024-11-20 12:09:53 +01:00
|
|
|
forcats,
|
2024-11-20 14:31:01 +01:00
|
|
|
vctrs
|
2018-06-03 22:08:26 +02:00
|
|
|
Collate:
|
2024-09-09 11:01:46 +02:00
|
|
|
'REDCapCAST-package.R'
|
2019-07-01 22:54:29 +02:00
|
|
|
'utils.r'
|
2018-06-23 04:24:34 +02:00
|
|
|
'process_user_input.r'
|
2018-06-03 22:08:26 +02:00
|
|
|
'REDCap_split.r'
|
2024-11-20 12:09:53 +01:00
|
|
|
'as_factor.R'
|
2024-05-02 13:31:21 +02:00
|
|
|
'doc2dd.R'
|
2023-07-04 16:03:06 +02:00
|
|
|
'ds2dd.R'
|
2024-01-18 14:58:38 +01:00
|
|
|
'ds2dd_detailed.R'
|
2023-12-20 09:01:40 +01:00
|
|
|
'easy_redcap.R'
|
2024-10-24 11:41:48 +02:00
|
|
|
'export_redcap_instrument.R'
|
2024-05-02 13:31:21 +02:00
|
|
|
'html_styling.R'
|
2024-02-27 12:43:54 +01:00
|
|
|
'mtcars_redcap.R'
|
2024-01-29 12:43:47 +01:00
|
|
|
'read_redcap_instrument.R'
|
2023-02-28 09:54:03 +01:00
|
|
|
'read_redcap_tables.R'
|
2023-02-28 13:59:45 +01:00
|
|
|
'redcap_wider.R'
|
2023-04-13 12:15:34 +02:00
|
|
|
'redcapcast_data.R'
|
|
|
|
'redcapcast_meta.R'
|
2024-02-26 09:34:05 +01:00
|
|
|
'shiny_cast.R'
|
2023-03-08 11:50:44 +01:00
|
|
|
Language: en-US
|
2023-04-13 10:57:04 +02:00
|
|
|
VignetteBuilder: knitr
|