From c597eec5e4fcf8ce697e7b4c168a15184e87e960 Mon Sep 17 00:00:00 2001 From: AG Damsbo Date: Fri, 2 Jun 2023 12:07:20 +0200 Subject: [PATCH] =?UTF-8?q?updated=20description,=20icon=20on=20favicons?= =?UTF-8?q?=20=E2=9C=8C=EF=B8=8F=F0=9F=A7=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + DESCRIPTION | 12 +- NEWS.md | 8 + README.md | 7 +- docs/404.html | 11 +- docs/LICENSE.html | 6 +- docs/apple-touch-icon-120x120.png | Bin 0 -> 8247 bytes docs/apple-touch-icon-152x152.png | Bin 0 -> 10968 bytes docs/apple-touch-icon-180x180.png | Bin 0 -> 13473 bytes docs/apple-touch-icon-60x60.png | Bin 0 -> 3799 bytes docs/apple-touch-icon-76x76.png | Bin 0 -> 4827 bytes docs/apple-touch-icon.png | Bin 0 -> 13473 bytes docs/articles/Introduction.html | 413 ++++++++++-------- docs/articles/index.html | 6 +- docs/authors.html | 10 +- docs/favicon-16x16.png | Bin 0 -> 1214 bytes docs/favicon-32x32.png | Bin 0 -> 2001 bytes docs/favicon.ico | Bin 0 -> 15086 bytes docs/index.html | 35 +- docs/logo.png | Bin 0 -> 10000 bytes docs/news/index.html | 15 +- docs/pkgdown.yml | 2 +- docs/reference/REDCap_split.html | 8 +- docs/reference/clean_redcap_name.html | 8 +- docs/reference/figures/hexlogo.png | Bin 0 -> 10000 bytes docs/reference/figures/logo.png | Bin 0 -> 10000 bytes docs/reference/figures/rook-cap.png | Bin 0 -> 8846 bytes docs/reference/focused_metadata.html | 6 +- docs/reference/index.html | 6 +- docs/reference/match_fields_to_form.html | 6 +- docs/reference/read_redcap_tables.html | 8 +- docs/reference/redcap_wider.html | 8 +- docs/reference/redcapcast_data.html | 8 +- docs/reference/redcapcast_meta.html | 6 +- docs/reference/sanitize_split.html | 6 +- docs/reference/split_non_repeating_forms.html | 6 +- docs/search.json | 2 +- man/figures/logo.png | Bin 0 -> 10000 bytes man/figures/rook-cap.png | Bin 0 -> 8846 bytes pkgdown/favicon/apple-touch-icon-120x120.png | Bin 0 -> 8247 bytes pkgdown/favicon/apple-touch-icon-152x152.png | Bin 0 -> 10968 bytes pkgdown/favicon/apple-touch-icon-180x180.png | Bin 0 -> 13473 bytes pkgdown/favicon/apple-touch-icon-60x60.png | Bin 0 -> 3799 bytes pkgdown/favicon/apple-touch-icon-76x76.png | Bin 0 -> 4827 bytes pkgdown/favicon/apple-touch-icon.png | Bin 0 -> 13473 bytes pkgdown/favicon/favicon-16x16.png | Bin 0 -> 1214 bytes pkgdown/favicon/favicon-32x32.png | Bin 0 -> 2001 bytes pkgdown/favicon/favicon.ico | Bin 0 -> 15086 bytes 48 files changed, 354 insertions(+), 250 deletions(-) create mode 100644 docs/apple-touch-icon-120x120.png create mode 100644 docs/apple-touch-icon-152x152.png create mode 100644 docs/apple-touch-icon-180x180.png create mode 100644 docs/apple-touch-icon-60x60.png create mode 100644 docs/apple-touch-icon-76x76.png create mode 100644 docs/apple-touch-icon.png create mode 100644 docs/favicon-16x16.png create mode 100644 docs/favicon-32x32.png create mode 100644 docs/favicon.ico create mode 100644 docs/logo.png create mode 100644 docs/reference/figures/hexlogo.png create mode 100644 docs/reference/figures/logo.png create mode 100644 docs/reference/figures/rook-cap.png create mode 100644 man/figures/logo.png create mode 100644 man/figures/rook-cap.png create mode 100644 pkgdown/favicon/apple-touch-icon-120x120.png create mode 100644 pkgdown/favicon/apple-touch-icon-152x152.png create mode 100644 pkgdown/favicon/apple-touch-icon-180x180.png create mode 100644 pkgdown/favicon/apple-touch-icon-60x60.png create mode 100644 pkgdown/favicon/apple-touch-icon-76x76.png create mode 100644 pkgdown/favicon/apple-touch-icon.png create mode 100644 pkgdown/favicon/favicon-16x16.png create mode 100644 pkgdown/favicon/favicon-32x32.png create mode 100644 pkgdown/favicon/favicon.ico diff --git a/.gitignore b/.gitignore index c3e3b8a..8537159 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ test-data/ inst/doc +logo.R diff --git a/DESCRIPTION b/DESCRIPTION index e0beda5..0149670 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,16 +1,16 @@ Package: REDCapCAST Title: REDCap Castellated Data Handling -Version: 23.4.1 +Version: 23.6.1 Authors@R: c( person("Andreas Gammelgaard", "Damsbo", email = "agdamsbo@clin.au.dk", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-7559-1154")), person("Paul", "Egeler", email = "paul.egeler@spectrumhealth.org", role = "aut")) -Description: Based on REDCapRITS by Paul Egeler and Spectrum Health. +Description: Forked from REDCapRITS by Paul Egeler and Spectrum Health. See . - Handles the castellated dataset from REDCap projects with repeating - instruments. Split data into multiple tables. This will take raw output from - a REDCap export and split it into a base table and child tables for each - repeated instrument. + Handles castellated datasets from REDCap projects with repeating instruments. + Assists in splitting raw REDCap data exports to base table and child tables + for each repeated instrument. Keeps a focused data export approach, by + allowing to only export required data from the database. REDCap (Research Electronic Data Capture) is a secure, web-based software platform designed to support data capture for research studies, providing 1) an intuitive interface for validated data capture; 2) audit trails for diff --git a/NEWS.md b/NEWS.md index 37f7415..66f596a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +# REDCapCAST 23.6.1 + +### Documentation: + +* Updated description. +* Look! A hexicon! +* Heading for CRAN. + # REDCapCAST 23.4.1 ### Documentation: diff --git a/README.md b/README.md index e25658d..123004d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html) -# REDCapCAST +# REDCapCAST package + REDCap Castellated data handling when using repeated instruments. This package is a fork of [SpectrumHealthResearch/REDCapRITS](https://github.com/SpectrumHealthResearch/REDCapRITS). The REDCapRITS represents great and extensive work to handle castellated REDCap data in different programming languages. This fork is purely minded on R usage and includes a few implementations of the main `REDCap_split` function. @@ -25,6 +26,10 @@ This package is primarily relevant for working with longitudinal projects and/or Compared to the original `REDCapRITS`, all matching functions are improved to accept column naming of REDCap data from manual download or API export. +## Future + +The plan with this package is to be bundled with a Handbook on working with REDCap from R. I plan to also include functionality to assist in casting (yes, pun intended) the initial REDCap database. + ## Installation Install the latest version directly from GitHub: diff --git a/docs/404.html b/docs/404.html index af631c2..28cf036 100644 --- a/docs/404.html +++ b/docs/404.html @@ -6,11 +6,18 @@ Page not found (404) • REDCapCAST + + + + + + + GNU General Public License • REDCapCASTGNU General Public License • REDCapCAST @@ -10,7 +10,7 @@ REDCapCAST - 23.4.1 + 23.6.1