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

26
reference/all_na.md Normal file
View file

@ -0,0 +1,26 @@
# Check if vector is all NA
Check if vector is all NA
## Usage
``` r
all_na(data)
```
## Arguments
- data:
vector of data.frame
## Value
logical
## Examples
``` r
rep(NA, 4) |> all_na()
#> [1] TRUE
```