Skip to content

Commit

Permalink
Merge pull request #178 from pharmaverse/177_rds@devel
Browse files Browse the repository at this point in the history
closes #177 rds@devel
  • Loading branch information
rossfarrugia committed Oct 21, 2022
2 parents 4a40bc7 + 8e939c1 commit 2bbb9ea
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# admiralonco 0.2.0

## New Features

## Updates of Existing Functions

## Breaking Changes

## Documentation

## Various

- Templates now save datasets as .rds instead of .rda (#177)

# admiralonco 0.1.0

- Initial package release focused mainly on solid tumor / RECIST v1.1.
2 changes: 2 additions & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ pharmaverse
pre
Pre
radiological
rda
rds
RECIST
responder
responders
Expand Down
2 changes: 1 addition & 1 deletion inst/templates/ad_adrs.R
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,4 @@ adrs <- adrs %>%
# ---- Save output ----

dir <- tempdir() # Change to whichever directory you want to save the dataset in
save(adrs, file = file.path(dir, "adrs.rda"), compress = "bzip2")
saveRDS(adrs, file = file.path(dir, "adrs.rds"), compress = "bzip2")
2 changes: 1 addition & 1 deletion inst/templates/ad_adtte.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ adtte <- adtte %>%
# ---- Save output ----

dir <- tempdir() # Change to whichever directory you want to save the dataset in
save(adtte, file = file.path(dir, "adtte.rda"), compress = "bzip2")
saveRDS(adtte, file = file.path(dir, "adtte.rds"), compress = "bzip2")

0 comments on commit 2bbb9ea

Please sign in to comment.