-
Notifications
You must be signed in to change notification settings - Fork 11
/
13-future.Rmd
35 lines (26 loc) · 1.15 KB
/
13-future.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Future
This section contains ideas for future content. Your collaboration is welcome.
## Use {renv}
{renv} ensures consistent package version for collaborating on this document. Right after you pull this repository, run `renv::restore()` to rehydrate your local project with necessary dependencies.
Current package versions in the renv lockfile:
```{r echo=FALSE}
local({
renv_lock <-
as.data.frame(do.call(rbind,
lapply(jsonlite::read_json("renv.lock")$Packages,
function(x){
c(name = unname(unlist(x[["Package"]])),
version = unname(unlist(x[["Version"]])))
})))
rownames(renv_lock) <- NULL
renv_lock
})
```
If you think a package should be updated or newly included, reflect this information in `renv.lock` through `renv::snapshot()` and include it in your pull request.
## Areas of Expansion
- ADaM derivation with `{admiral}` and/or `{dplyr}`
- define.xml
## Content
- Working with dates in R
- Data exportation
- More examples using Pharmaverse-based packages as they mature