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,29 @@
# Tests if vector can be interpreted as numeric without introducing NAs by coercion
Tests if vector can be interpreted as numeric without introducing NAs by
coercion
## Usage
``` r
possibly_numeric(data)
```
## Arguments
- data:
vector
## Value
logical
## Examples
``` r
c("1","5") |> possibly_numeric()
#> [1] TRUE
c("1","5","e") |> possibly_numeric()
#> [1] FALSE
```