Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #10 add function create_iso8601() #21

Merged
merged 56 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
c9554f5
clean up dummy test
ramiromagno Nov 15, 2023
0b2532c
add `dtc_formats` data set
ramiromagno Nov 15, 2023
5368f4d
update .Rbuildignore
ramiromagno Nov 15, 2023
b3f29d2
add tibble support for automatic pretty printing of tibbles
ramiromagno Nov 15, 2023
475d8df
add `create_iso8601()` (closes #10)
ramiromagno Nov 15, 2023
81ef1e5
clean up `lintr::lint_package()` issues
ramiromagno Nov 15, 2023
b0bbe79
Automatic renv profile update.
ramiromagno Nov 15, 2023
d493b4c
Automatic renv profile update.
ramiromagno Nov 15, 2023
83db47d
Fix typos in R/dtc_utils.R
ramiromagno Nov 16, 2023
00d1e8f
remove `dummy()` function
ramiromagno Nov 16, 2023
5347631
remove `.onLoad()` function
ramiromagno Nov 16, 2023
8cc595a
Remove the `is_dtc_fmt()` function
ramiromagno Nov 16, 2023
ae8966c
Import `.data` from rlang globally
ramiromagno Nov 16, 2023
96505f0
Update WORDLIST
ramiromagno Nov 16, 2023
431c14a
Update `assert_capture_matrix()` and `complete_capture_matrix()` docs
ramiromagno Nov 16, 2023
673adcc
Add `coalesce_capture_matrices()` doc
ramiromagno Nov 16, 2023
057c84a
Merge branch '0010_calculate_isodate' of github.com:pharmaverse/sdtm.…
ramiromagno Nov 16, 2023
0b75374
Fix typo in `assert_dtc_fmt()` doc
ramiromagno Nov 16, 2023
0810be0
Add `regex_or()` doc
ramiromagno Nov 16, 2023
0a848c3
Add `fmt_rg()` doc
ramiromagno Nov 16, 2023
113c67c
Add `fmt_c()` doc
ramiromagno Nov 16, 2023
d558103
Add `parse_dttm_fmt()` doc
ramiromagno Nov 16, 2023
95e76ed
Fix doc of `parse_dttm_fmt()`
ramiromagno Nov 16, 2023
0f298c9
Add `dttm_fmt_to_regex()` doc
ramiromagno Nov 16, 2023
07cb489
Bump development version to 0.0.0.9001
ramiromagno Nov 16, 2023
565fdc7
Merge branch 'main' into 0010_calculate_isodate
ramiromagno Nov 17, 2023
57dd584
Style updates
ramiromagno Nov 17, 2023
52c752c
Style update to tests/testthat/test-yy_to_yyyy.R
ramiromagno Nov 17, 2023
55b0e5e
Style update
ramiromagno Nov 17, 2023
20f40ac
Blank lines removal
ramiromagno Nov 17, 2023
c43343e
Style update
ramiromagno Nov 17, 2023
8bac47b
Update docs after style update
ramiromagno Nov 17, 2023
0bad5ed
Refactor code about parsing dttm formats
ramiromagno Nov 19, 2023
dae8861
Make `parse_dttm_fmt()` handle the case of no matching format components
ramiromagno Nov 19, 2023
80e7278
Use `fmt_dttmc()` in unit tests
ramiromagno Nov 19, 2023
507b911
Small clarification on unit test description
ramiromagno Nov 20, 2023
d6cd751
Remove futile assertion from `assert_dtc_fmt()`
ramiromagno Nov 20, 2023
2079aa7
Add staged_dependencies for admiraldev (#26)
galachad Nov 20, 2023
2142f59
Merge branch '0010_calculate_isodate' of github.com:pharmaverse/sdtm.…
ramiromagno Nov 20, 2023
3becca5
Automatic renv profile update.
ramiromagno Nov 20, 2023
926026b
Automatic renv profile update.
ramiromagno Nov 20, 2023
c069713
Cleaned up lintr issues
ramiromagno Nov 20, 2023
160b7f0
Export `fmt_cmp()` and add early draft of `create_iso8601()` article
ramiromagno Nov 21, 2023
d223edd
Merge branch '0010_calculate_isodate' of github.com:pharmaverse/sdtm.…
ramiromagno Nov 21, 2023
b87efd0
Update `create_iso8601()` article
ramiromagno Nov 22, 2023
62eb915
Link `create_iso8601()` doc to article "iso_8601"
ramiromagno Nov 22, 2023
396d042
Add RM as author to DESCRIPTION
ramiromagno Nov 22, 2023
530924f
Fix author role of RM
ramiromagno Nov 22, 2023
b19b8a9
Fix indentation at `fmt_cmp()` source
ramiromagno Nov 22, 2023
aa21135
Remove `.check_format` from examples and add an example with `fmt_cmp()`
ramiromagno Nov 22, 2023
81336b1
Add an example to `create_iso8601()` with involving alternative forma…
ramiromagno Nov 22, 2023
e62fc5f
Add example to `create_iso8601()` about the interplay of `.format` an…
ramiromagno Nov 22, 2023
53d8b5a
Update common.yml
galachad Nov 22, 2023
763f6da
Update style
ramiromagno Nov 22, 2023
8cd0849
Change "oak" to "sdtm.oak" in DESCRIPTION
ramiromagno Nov 22, 2023
30376c3
Change "oak" to "sdtm.oak" in README
ramiromagno Nov 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
^pkgdown$
^LICENSE\.md$
^\.lintr$
^data-raw$
10 changes: 7 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,17 @@ Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Depends: R (>= 4.1)
Imports:
rlang (>= 1.0.0)
admiraldev,
dplyr,
purrr,
rlang (>= 1.0.0),
stringr,
tibble
Suggests:
knitr,
rmarkdown,
spelling,
testthat (>= 3.1.7),
tibble
testthat (>= 3.1.7)
VignetteBuilder: knitr
Config/testthat/edition: 3
Config/testthat/parallel: true
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Generated by roxygen2: do not edit by hand

export(create_iso8601)
import(rlang)
galachad marked this conversation as resolved.
Show resolved Hide resolved
importFrom(rlang,.data)
importFrom(tibble,tibble)
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# sdtm.oak (development version)

* Initial CRAN submission.
## New Features

* New function `create_iso8601()` for conversion of vectors of dates, times or date-times to ISO8601 format.
Loading