mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2026-06-19 13:17:30 +02:00
Deploying to gh-pages from @ agdamsbo/REDCapCAST@db75c3313e 🚀
This commit is contained in:
parent
bc2e23a272
commit
0b30252598
171 changed files with 7009 additions and 602 deletions
38
reference/is_repeated_longitudinal.md
Normal file
38
reference/is_repeated_longitudinal.md
Normal 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
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue