- New vignette "Creating ADRS with IMWG Criteria". (#277)
- Replaced hard coding of
exprs(USUBJID, STUDYID)
andexprs(USUBJID)
withget_admiral_option("subject_keys")
so the argument is flexible and can be changed from the default by the user. (#281)
- The
bor_ne
event object was updated such thatCR
andPR
are additionally considered as event. This ensures that the confirmed best overall response for a patient with a singleCR
orPR
assessment is derived as"NE"
instead of"MISSING"
. (#253)
-
New vignette "Creating ADRS with iRECIST endpoints". (#233)
-
All vignettes and templates were updated to be in line with the changes in
{admiral}
(see Breaking Changes for details)(#256).
-
The
derive_*()
functions were superseded in favor ofderive_extreme_event()
. Any superseded functions can continue to be used as demonstrated via the "Basic ADRS" vignette, as they will remain supported and won't be deprecated in the near future. (#256) -
The
filter_pd()
function was superseded in favor offilter_relative()
. (#256) -
The function
call_aval_fun()
, which was deprecated in admiralonco 0.4.0, has been removed. (#256)
- Website now has button/links to Slack channel and GitHub Issues. (#262)
- Oncology specific events are provided for deriving oncology parameters with
admiral::derive_extreme_event()
. (#234)
-
The
ADRS
vignette and template were split into two (#234):- A basic version which uses the
{admiralonco}
functions to cover standard RECIST 1.1. - A more flexible version which uses
admiral::derive_extreme_event()
. This should be used if non-standardADRS
parameters should be implemented or non-standard response values should be considered. This version can also be used as a starting point for implementing other response criteria than RECIST 1.1, e.g., iRECIST or International Myeloma Working Group (IMWG) criteria for the diagnosis of multiple myeloma.
- A basic version which uses the
-
The
ADRS
vignette and template were updated such that test data from{pharmaversesdtm}
instead of{admiral.test}
is used. (#226) -
The "Create
ADTR
" vignette and theADTR
template were updated such that test data from{pharmaversesdtm}
instead of{admiral.test}
is used. (#247) -
The confirmed response derivation was fixed in the basic
ADRS
vignette and template. When callingderive_param_confirmed_resp()
thefilter_source
argument has to be set toPARAMCD == "OVR" & ANL01FL == "Y"
instead ofPARAMCD == "OVR" & AVALC %in% c("CR", "PR") & ANL01FL == "Y"
. Otherwise, responses likeCR
,NE
,NE
,CR
are considered as confirmed response. (#245)
- New vignette "Creating and Using New Anti-Cancer Start Date" (#17)
- "Create
ADRS
" and "CreateADTTE
" vignette has been updated to include a link to "Creating and Using New Anti-Cancer Start Date" vignette
-
Added a "Report a bug" link to
{admiralonco}
website (#211) -
Added a section regarding dependencies to the
{admiralonco}
website (#223) -
Vignettes and templates were updated due to changes in admiral and admiralonco: (#216)
- The
AVAL
variable is now populated via theset_values_to
argument as theaval_fun
argument was deprecated. admiral::derive_param_extreme_event()
calls were replaced byadmiral::derive_extreme_records()
calls due to deprecation ofadmiral::derive_param_extreme_event()
.admiral::derive_param_exist_flag()
calls were updated as thedataset_adsl
argument was renamed todataset_ref
.
- The
-
Function
derive_param_lasta()
, which was deprecated in admiralonco 0.2.0, has been removed. (#216) -
The
aval_fun
argument ofderive_param_bor()
,derive_param_clinbenefit()
,derive_param_confirmed_bor()
,derive_param_confirmed_resp()
,derive_param_response()
was deprecated in favor of theset_values_to
argument. (#216) -
The
call_aval_fun()
function was deprecated in favor oradmiraldev::process_set_values_to()
. (#216)
- All function arguments which expected a list of quosures created by
vars()
are now expecting a list of expressions created byexprs()
. For example, instead ofby_vars = vars(STUDYID, USUBJID)
by_vars = exprs(STUDYID, USUBJID)
must be used now. (#197)
- New vignette "Create
ADTR
" (#16)
- ADTTE template simplified for duration of response in line with
admiral::derive_param_tte()
enhancement (#203)
- Functions that use
subject_keys
as a function argument now default toget_admiral_option("subject_keys")
instead ofvars(STUDYID, USUBJID)
to allow users to change the variables that uniquely identify a subject once usingset_admiral_options()
to avoid several instances of find + replace in a script. (#175)
- Function
derive_param_lasta()
has been deprecated. Please useadmiral::derive_param_extreme_event()
instead (#89).
- Showed alternative approach in
ADRS
vignette for filtering out assessments after progressive disease compared tosource_pd
argument (#168) - Extra terminology added for Independent Review Facility (IRF) as Blinded Independent Central Review (BICR) to make vignettes more accessible (#187)
- Templates now save datasets as .rds instead of .rda (#177)
- Initial package release focused mainly on solid tumor / RECIST v1.1.