mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀
This commit is contained in:
parent
4cf4bd0499
commit
6d545337de
328 changed files with 12930 additions and 1662 deletions
53
reference/is_datetime.md
Normal file
53
reference/is_datetime.md
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
# Test is date/datetime/time
|
||||
|
||||
Test is date/datetime/time
|
||||
|
||||
## Usage
|
||||
|
||||
``` r
|
||||
is_datetime(data)
|
||||
```
|
||||
|
||||
## Arguments
|
||||
|
||||
- data:
|
||||
|
||||
data
|
||||
|
||||
## Value
|
||||
|
||||
factor
|
||||
|
||||
## Examples
|
||||
|
||||
``` r
|
||||
vapply(REDCapCAST::redcapcast_data, is_datetime, logical(1))
|
||||
#> record_id redcap_event_name
|
||||
#> FALSE FALSE
|
||||
#> redcap_repeat_instrument redcap_repeat_instance
|
||||
#> FALSE FALSE
|
||||
#> cpr inclusion
|
||||
#> FALSE TRUE
|
||||
#> inclusion_time dob
|
||||
#> TRUE TRUE
|
||||
#> age age_integer
|
||||
#> FALSE FALSE
|
||||
#> sex cohabitation
|
||||
#> FALSE FALSE
|
||||
#> hypertension diabetes
|
||||
#> FALSE FALSE
|
||||
#> region baseline_data_start_complete
|
||||
#> FALSE FALSE
|
||||
#> mrs_assessed mrs_date
|
||||
#> FALSE TRUE
|
||||
#> mrs_score mrs_complete
|
||||
#> FALSE FALSE
|
||||
#> con_mrs con_calc
|
||||
#> FALSE FALSE
|
||||
#> consensus_complete event_datetime
|
||||
#> FALSE TRUE
|
||||
#> event_age event_type
|
||||
#> FALSE FALSE
|
||||
#> new_event_complete
|
||||
#> FALSE
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue