Deploying to gh-pages from @ agdamsbo/REDCapCAST@db75c3313e 🚀

This commit is contained in:
agdamsbo 2025-11-14 14:10:52 +00:00
commit 0b30252598
171 changed files with 7009 additions and 602 deletions

View file

@ -0,0 +1,38 @@
# Test if repeatable or longitudinal
Test if repeatable or longitudinal
## Usage
``` r
is_repeated_longitudinal(
data,
generics = c("redcap_event_name", "redcap_repeat_instrument", "redcap_repeat_instance")
)
```
## Arguments
- data:
data set
- generics:
default is "redcap_event_name", "redcap_repeat_instrument" and
"redcap_repeat_instance"
## Value
logical
## Examples
``` r
is_repeated_longitudinal(c("record_id", "age", "record_id", "gender"))
#> [1] FALSE
is_repeated_longitudinal(redcapcast_data)
#> [1] TRUE
is_repeated_longitudinal(list(redcapcast_data))
#> [1] TRUE
```