Skip to content
Draft
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Depends:
Imports:
admiraldev (>= 1.4.0),
cli (>= 3.6.2),
dplyr (>= 1.1.1),
dplyr (>= 1.2.0),
hms (>= 0.5.3),
lifecycle (>= 0.1.0),
lubridate (>= 1.7.4),
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ importFrom(dplyr,distinct)
importFrom(dplyr,ends_with)
importFrom(dplyr,everything)
importFrom(dplyr,filter)
importFrom(dplyr,filter_out)
importFrom(dplyr,first)
importFrom(dplyr,full_join)
importFrom(dplyr,group_by)
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

## Updates of Existing Functions

- The `end_dates` argument for specifying dates which restrict the observation
period and the `event_type` argument for specifying if the event is negative
(progression, death, worsening, ...) were added to `derive_param_tte()`. The
`consider_end_dates` field was added to the `event_source()`, `censor_source()`,
and `tte_source()` objects. (#2952)

## Breaking Changes

- The following function arguments are entering the next phase of the [deprecation process](https://pharmaverse.github.io/admiraldev/articles/programming_strategy.html#deprecation):
Expand Down
11 changes: 6 additions & 5 deletions R/admiral-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
#' @family internal
#' @import admiraldev
#' @importFrom cli cli_abort ansi_collapse cli_div cli_inform cli_text cli_warn
#' @importFrom dplyr anti_join across arrange between bind_cols bind_rows case_when
#' coalesce cross_join desc distinct ends_with everything filter first
#' full_join group_by group_by_at group_split if_else inner_join lag left_join
#' mutate n n_distinct na_if pull reframe rename rename_with row_number select
#' semi_join slice starts_with summarise summarise_all tibble tribble ungroup union
#' @importFrom dplyr anti_join across arrange between bind_cols bind_rows
#' case_when coalesce cross_join desc distinct ends_with everything filter
#' filter_out first full_join group_by group_by_at group_split if_else
#' inner_join lag left_join mutate n n_distinct na_if pull reframe rename
#' rename_with row_number select semi_join slice starts_with summarise
#' summarise_all tibble tribble ungroup union
#' @importFrom hms as_hms
#' @importFrom lifecycle deprecate_warn deprecate_stop deprecated
#' @importFrom lubridate %--% as_datetime ceiling_date date days duration
Expand Down
Loading
Loading